Commit 7439e1bd authored by Jesse Mapel's avatar Jesse Mapel Committed by Makayla Shepherd
Browse files

modified jigsaw errors test to remove file extensions

parent 0adf71b9
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ include $(ISISROOT)/make/isismake.tsts

commands:
# TEST A: CAMSOLVE=None and SPSOLVE=None
	echo -e "Error Test A:" >> $(OUTPUT)/error.txt;
	echo -e "Error Test A:" > $(OUTPUT)/error.txt;
	if [[ `$(APPNAME) \
	  fromlist=$(INPUT)/empty.lis \
	  cnet=$(INPUT)/empty.net \
@@ -60,7 +60,7 @@ commands:
	if [[ `$(APPNAME) \
	  fromlist=$(INPUT)/empty.lis \
	  cnet=$(INPUT)/notacnet.net \
	  onet=$(OUTPUT)/out.net \
	  onet=$(output)/out.net \
	  radius=yes \
	  spsolve=positions \
	  point_radius_sigma=500 \
@@ -71,5 +71,5 @@ commands:
	then \
	  true; \
	fi;

	sed -i 's_$(INPUT)/__g' $(OUTPUT)/error.txt
# Remove paths from errors file
	sed -i 's/\(\[\)\/.*\(input\)/\1\2/g' $(OUTPUT)/error.txt;