projects
/
YACASL2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0169c0a
)
スモークテストを実行するmake smokeを追加
author
j8takagi
<j8takagi@nifty.com>
Mon, 6 Aug 2018 08:48:34 +0000
(17:48 +0900)
committer
j8takagi
<j8takagi@nifty.com>
Mon, 6 Aug 2018 08:48:34 +0000
(17:48 +0900)
Makefile
patch
|
blob
|
history
test/system/Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index
bff31db
..
df6cab7
100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-60,6
+60,9
@@
doc_inner:
check:
$(MAKE) -sC test/system
+smoke:
+ $(MAKE) -sC test/system smoke
+
valgrind:
$(MAKE) -sC test/system valgrind
diff --git
a/test/system/Makefile
b/test/system/Makefile
index
74f8a4a
..
833b8fe
100644
(file)
--- a/
test/system/Makefile
+++ b/
test/system/Makefile
@@
-4,11
+4,14
@@
define make_dirs
$(foreach d,$1,$(MAKE) -sC $d $2)
endef
-.PHONY: check valgrind clean
+.PHONY: check
smoke
valgrind clean
check:
@$(call make_dirs,$(CMD),$@; )
+smoke:
+ $(MAKE) -sC casl2_smoke check
+
valgrind:
@$(call make_dirs,$(CMD),$@; )