commit | 121f7c94752e0ef5a4a3983e553ffc6408c34cb0 | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg2@elzevir.fr> | Mon Aug 10 17:28:58 2015 +0200 |
committer | Manuel Pégourié-Gonnard <mpg2@elzevir.fr> | Tue Aug 11 03:42:34 2015 +0200 |
tree | dd3b7119bac0207ba67e824d7d808b76a26c0571 | |
parent | a1e6ba6477b4a78182598c2e9a2ad604e46f52a2 [diff] [blame] |
Disable -Wunused-result in programs and tests
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 62a2468..3b3ad36 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt
@@ -29,7 +29,7 @@ add_test(${data_name}-suite test_suite_${data_name}) endfunction(add_test_suite) -set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-unused-function") +set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-unused-function -Wno-unused-result") add_test_suite(aes aes.ecb) add_test_suite(aes aes.cbc)