Changeset 7ab7075f in mainline for uspace/lib/c/test/stdio.c
- Timestamp:
- 2018-08-06T18:40:12Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1dcba91
- Parents:
- 7afd12e5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/test/stdio.c
r7afd12e5 r7ab7075f 62 62 PCUT_ASSERT_TRUE(rc != 0); 63 63 64 f = fopen(buf, "w ");64 f = fopen(buf, "wx"); 65 65 PCUT_ASSERT_NOT_NULL(f); 66 66 fclose(f); … … 92 92 PCUT_ASSERT_NOT_NULL(p); 93 93 94 f = fopen(buf1, "w ");94 f = fopen(buf1, "wx"); 95 95 PCUT_ASSERT_NOT_NULL(f); 96 96 fclose(f); … … 142 142 PCUT_ASSERT_NOT_NULL(p); 143 143 144 f = fopen(p, "w+ ");144 f = fopen(p, "w+x"); 145 145 PCUT_ASSERT_NOT_NULL(f); 146 146 (void) remove(p); … … 174 174 PCUT_ASSERT_NOT_NULL(p); 175 175 176 f = fopen(p, "w+ ");176 f = fopen(p, "w+x"); 177 177 PCUT_ASSERT_NOT_NULL(f); 178 178 (void) remove(p);
Note:
See TracChangeset
for help on using the changeset viewer.