Browse Source

Ensure to compile on every test run.

Roberto Ostinelli 10 years ago
parent
commit
3c765c2134
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Makefile

+ 2 - 2
Makefile

@@ -21,11 +21,11 @@ run:
 	-mnesia schema_location ram \
 	-eval 'syn:start().'
 
-tests:
+tests: all
 	@mkdir -p /tmp/logs; \
 	ct_run -sname syn -dir test -logdir /tmp/logs -pa ebin; \
 	res=$$?; \
 	rm -rf /tmp/logs; \
 	if [ $$res != 0 ]; then exit $$res; fi;
 
-travis: all tests
+travis: tests