Sfoglia il codice sorgente

fix test to be path independent

Jan Klemkow 6 anni fa
parent
commit
d3f5940f90
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  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