Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modify failed pjlib test to exclusive #4258

Merged
merged 2 commits into from
Jan 22, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pjlib/src/pjlib-test/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ static int features_tests(int argc, char *argv[])
07:27:23.440 ....error: timestamp drifted by 3800 usec after 10020 msec
*/
#if INCLUDE_TIMESTAMP_TEST
# if defined(PJ_WIN32) && PJ_WIN32!=0
# if 1 //defined(PJ_WIN32) && PJ_WIN32!=0
UT_ADD_TEST(&test_app.ut_app, timestamp_test,
PJ_TEST_EXCLUSIVE | PJ_TEST_KEEP_LAST);
# else
Expand All @@ -269,7 +269,7 @@ static int features_tests(int argc, char *argv[])
as a workaround, set it as exclusive.
*/
#if INCLUDE_SLEEP_TEST
# if defined(PJ_WIN32) && PJ_WIN32!=0
# if 1 //defined(PJ_WIN32) && PJ_WIN32!=0
sauwming marked this conversation as resolved.
Show resolved Hide resolved
UT_ADD_TEST(&test_app.ut_app, sleep_test,
PJ_TEST_EXCLUSIVE | PJ_TEST_KEEP_LAST);
# else
Expand Down Expand Up @@ -317,7 +317,7 @@ static int features_tests(int argc, char *argv[])
Therefore we'll disable parallelism on Windows for this test. [blp]
*/
#if INCLUDE_IOQUEUE_STRESS_TEST
# if defined(PJ_WIN32) && PJ_WIN32!=0
# if 1 //defined(PJ_WIN32) && PJ_WIN32!=0
UT_ADD_TEST(&test_app.ut_app, ioqueue_stress_test,
PJ_TEST_EXCLUSIVE | PJ_TEST_KEEP_LAST);
# else
Expand Down
Loading