Commit c3e878d833172f15c2f0843ad75709d9b02262b5

Authored by Georg Hopp
1 parent d1d51c8a

Use AMD check in test.

Showing 1 changed file with 6 additions and 3 deletions
1 1 ACLOCAL_AMFLAGS = -I m4
2 2 AUTOMAKE_OPTIONS = subdir-objects
3 3
  4 +if IS_AMD
  5 +else
4 6 TESTS_ENVIRONMENT = valgrind \
5 7 --error-exitcode=123 \
6 8 --leak-check=full \
7 9 --suppressions=./suppress/external.supp \
8 10 --quiet
  11 +endif
9 12 TESTS = classTest
10 13 check_PROGRAMS = classTest
11 14
... ... @@ -51,15 +54,15 @@ coverage-html: clean clean-coverage check
51 54 clean-coverage: clean-gcda clean-gcno
52 55 $(LCOV) -d $(top_srcdir) -z
53 56 -rm -rf coverage.info coverage.base coverage.run $(cov_dir)
54   -
  57 +
55 58 clean-gcda:
56 59 @echo Removing old coverage results
57 60 -find $(top_srcdir) -name '*.gcda' -print | xargs -r rm
58   -
  61 +
59 62 clean-gcno:
60 63 @echo Removing old coverage results
61 64 -find $(top_srcdir) -name '*.gcno' -print | xargs -r rm
62   -
  65 +
63 66 clean-local: clean-coverage
64 67
65 68 endif # HAVE_GCOV
... ...
Please register or login to post a comment