Skip to content

Commit

Permalink
Move cpp20 tests as last
Browse files Browse the repository at this point in the history
  • Loading branch information
grygorek committed Aug 31, 2023
1 parent f01845e commit 28b7c79
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
8 changes: 4 additions & 4 deletions lib_test_CA9/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ int main(void)
TEST_F(StartWithStackSize);
TEST_F(AssignWithStackSize);

TEST_F(TestConditionVariable);
TEST_F(TestCallOnce);
TEST_F(TestFuture);

#if __cplusplus > 201907L
TEST_F(TestJThread);

Expand All @@ -88,10 +92,6 @@ int main(void)
TEST_F(TestBarrier);
TEST_F(TestAtomicWait);
#endif

TEST_F(TestConditionVariable);
TEST_F(TestCallOnce);
TEST_F(TestFuture);
}

print("OK\n");
Expand Down
8 changes: 4 additions & 4 deletions lib_test_RISC-V/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ int main(void)
TEST_F(StartWithStackSize);
TEST_F(AssignWithStackSize);

TEST_F(TestConditionVariable);
TEST_F(TestCallOnce);
TEST_F(TestFuture);

#if __cplusplus > 201907L
TEST_F(TestJThread);

Expand All @@ -87,10 +91,6 @@ int main(void)
TEST_F(TestBarrier);
TEST_F(TestAtomicWait);
#endif

TEST_F(TestConditionVariable);
TEST_F(TestCallOnce);
TEST_F(TestFuture);
}
print("OK\n");
return EXIT_SUCCESS;
Expand Down
9 changes: 4 additions & 5 deletions lib_test_nxp_mk64/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,18 +65,17 @@ int main(void)
StartWithStackSize();
AssignWithStackSize();

TestConditionVariable();
TestCallOnce();
TestFuture();

#if __cplusplus > 201907L
TestJThread();
TestSemaphore();
TestLatch();
TestBarrier();
TestAtomicWait();
#endif

TestConditionVariable();

TestCallOnce();
TestFuture();
}
return 0;
}
Expand Down

0 comments on commit 28b7c79

Please sign in to comment.