Ver código fonte

fix test to be path independent

Jan Klemkow 6 anos atrás
pai
commit
d3f5940f90
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      Makefile

+ 2 - 2
Makefile

@@ -10,5 +10,5 @@ clean:
 
 test: scroll
 	# return code passthrough of childs
-	if ! ./scroll /usr/bin/true;  then exit 1; fi
-	if   ./scroll /usr/bin/false; then exit 1; fi
+	if ! ./scroll true;  then exit 1; fi
+	if   ./scroll false; then exit 1; fi