This library contains code that extends and simplifies different operations
for C language based programs.
Revisión | 6ca105934f62418085584c4ce30820e98f9d47a2 (tree) |
---|---|
Tiempo | 2022-08-29 23:54:58 |
Autor | Sergey Gusarov <laborer2008@gmai...> |
Commiter | Sergey Gusarov |
test_stat: Fixed build on windows
@@ -23,7 +23,7 @@ | ||
23 | 23 | { |
24 | 24 | } |
25 | 25 | |
26 | -void testCompile(void) | |
26 | +void testCompileWrappers(void) | |
27 | 27 | { |
28 | 28 | CT_USING_CT_NAMESPACE |
29 | 29 |
@@ -32,10 +32,10 @@ | ||
32 | 32 | int mkdirStatus; |
33 | 33 | int statStatus; |
34 | 34 | |
35 | - chmodStatus = chmodWrapper(CT_NULL, S_ISUID); | |
35 | + chmodStatus = chmodWrapper(CT_NULL, 0); | |
36 | 36 | TEST_ASSERT_TRUE(chmodStatus != kChModOkResult); |
37 | 37 | |
38 | - mkdirStatus = mkDirWrapper(CT_NULL, S_IROTH, true); | |
38 | + mkdirStatus = mkDirWrapper(CT_NULL, 0, true); | |
39 | 39 | TEST_ASSERT_TRUE(mkdirStatus != kMkDirOkResult); |
40 | 40 | |
41 | 41 | statStatus = statWrapper(CT_NULL, CT_NULL); |