From: j8takagi Date: Tue, 12 Feb 2019 08:53:10 +0000 (+0900) Subject: テストで、システムテストからスモークテストを除外 X-Git-Tag: v0.5p3~2 X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=commitdiff_plain;h=36f693893931e5aba7f292aaa3c7978b8570a027 テストで、システムテストからスモークテストを除外 --- diff --git a/test/system/Makefile b/test/system/Makefile index fe87d96..26c5f55 100644 --- a/test/system/Makefile +++ b/test/system/Makefile @@ -1,5 +1,5 @@ # 複数の子ディレクトリーでmakeを実行 -CMD = casl2_smoke casl2_opt casl2_cmd casl2_err comet2_smoke comet2_opt comet2_cmd comet2_err casl2rev dumpword +CMD = casl2_opt casl2_cmd casl2_err comet2_smoke comet2_opt comet2_cmd comet2_err casl2rev dumpword define make_dirs $(foreach d,$1,$(MAKE) -sC $d $2) endef @@ -16,7 +16,7 @@ smoke-valgrind: $(MAKE) -sC casl2_smoke valgrind valgrind: - @$(call make_dirs,$(CMD),$@; ) + @$(call make_dirs,casl2_smoke $(CMD),$@; ) clean: - @$(call make_dirs,$(CMD),$@; ) + @$(call make_dirs,casl2_smoke $(CMD),$@; )