diff options
author | Chunming Zhou <david1.zhou@amd.com> | 2018-03-01 18:04:07 +0800 |
---|---|---|
committer | Chunming Zhou <david1.zhou@amd.com> | 2018-03-02 10:32:22 +0800 |
commit | 1f6a85cc3773025940005e443f9bddcbf1795c27 (patch) | |
tree | 470fa9656033db3d4c29f9ae27e4e1374680c2ed /tests/amdgpu/amdgpu_test.c | |
parent | bca585b02f09e27d7adef8375630515711bd4802 (diff) | |
download | libdrm-1f6a85cc3773025940005e443f9bddcbf1795c27.tar.gz libdrm-1f6a85cc3773025940005e443f9bddcbf1795c27.tar.bz2 libdrm-1f6a85cc3773025940005e443f9bddcbf1795c27.zip |
test/amdgpu: disable bo eviction test by default
if some system has no swap space and memory is less, than the test
could fail.
And bo eviction test takes much more time in some system, which effects
automation test result and efficiency.
So disable it by default now, only be used by developer manually.
Signed-off-by: Chunming Zhou <david1.zhou@amd.com>
Acked-by: Christian König <christian.koenig@amd.com>
Diffstat (limited to 'tests/amdgpu/amdgpu_test.c')
-rw-r--r-- | tests/amdgpu/amdgpu_test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/amdgpu/amdgpu_test.c b/tests/amdgpu/amdgpu_test.c index 4f766aaf..35cb37a4 100644 --- a/tests/amdgpu/amdgpu_test.c +++ b/tests/amdgpu/amdgpu_test.c @@ -432,6 +432,8 @@ static void amdgpu_disable_suits() if (amdgpu_set_test_active(BO_TESTS_STR, "Metadata", CU_FALSE)) fprintf(stderr, "test deactivation failed - %s\n", CU_get_error_msg()); + if (amdgpu_set_test_active(BASIC_TESTS_STR, "bo eviction Test", CU_FALSE)) + fprintf(stderr, "test deactivation failed - %s\n", CU_get_error_msg()); /* This test was ran on GFX8 and GFX9 only */ if (family_id < AMDGPU_FAMILY_VI || family_id > AMDGPU_FAMILY_RV) |