diff options
author | Emilio López <emilio.lopez@collabora.co.uk> | 2016-10-19 15:49:54 +0300 |
---|---|---|
committer | Shuah Khan <shuahkh@osg.samsung.com> | 2016-12-02 04:13:32 +0300 |
commit | 499a1d11f2653483f87c3339c8c799bc259536e7 (patch) | |
tree | 20cea53276bcc310b60c5931573080813f723f91 /tools/testing/selftests/sync/sync_test.c | |
parent | c52dee5025d904896198b7090cf7df80a4028363 (diff) | |
download | linux-499a1d11f2653483f87c3339c8c799bc259536e7.tar.xz |
selftest: sync: stress test for merges
This test is based on the libsync test suite from Android.
This commit includes a test to stress merge operations.
Signed-off-by: Emilio López <emilio.lopez@collabora.co.uk>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to 'tools/testing/selftests/sync/sync_test.c')
-rw-r--r-- | tools/testing/selftests/sync/sync_test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/testing/selftests/sync/sync_test.c b/tools/testing/selftests/sync/sync_test.c index 32f253499efd..9ea08d9f0b13 100644 --- a/tools/testing/selftests/sync/sync_test.c +++ b/tools/testing/selftests/sync/sync_test.c @@ -68,6 +68,7 @@ int main(void) err += RUN_TEST(test_fence_multi_timeline_wait); err += RUN_TEST(test_stress_two_threads_shared_timeline); err += RUN_TEST(test_consumer_stress_multi_producer_single_consumer); + err += RUN_TEST(test_merge_stress_random_merge); if (err) printf("[FAIL]\tsync errors: %d\n", err); |