From fa2818863ad3ae702ac064154c050c5896e17e90 Mon Sep 17 00:00:00 2001 From: Ward Fisher Date: Mon, 20 Apr 2015 13:54:17 -0600 Subject: [PATCH] Changed how several tests are built/invoked. --- ncdump/CMakeLists.txt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/ncdump/CMakeLists.txt b/ncdump/CMakeLists.txt index da32b7d15..9afbac856 100644 --- a/ncdump/CMakeLists.txt +++ b/ncdump/CMakeLists.txt @@ -122,10 +122,9 @@ ENDIF() add_sh_test(ncdump tst_formatx4) # Add this test by hand, as it is also called from a script. # Editing the script would break autotools compatibility. - set(MANUAL_TESTS tst_special_atts tst_compress tst_chunking) - add_bin_test(ncdump tst_special_atts) - add_bin_test(ncdump tst_compress) - add_bin_test(ncdump tst_chunking) + add_bin_test_no_prefix(tst_special_atts) + add_bin_test_no_prefix(tst_compress) + add_bin_test_no_prefix(tst_chunking) IF(NOT WIN32) add_sh_test(ncdump tst_netcdf4)