Commit 74f2d124 authored by Kim Oyama's avatar Kim Oyama
Browse files

IsisPreferences was modified so TerminalOutput=On. Many app tests needed to be...

IsisPreferences was modified so TerminalOutput=On. Many app tests needed to be modified to work with this change. Pipeline is still failing. Fixed #2050.

git-svn-id: http://subversion.wr.usgs.gov/repos/prog/isis3/trunk@5750 41f8697f-d340-4b68-9986-7bafba869bb8
parent e6360313
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -78,7 +78,7 @@ EndGroup
########################################################

Group = SessionLog
  TerminalOutput = Off
  TerminalOutput = On
  FileOutput     = On
  FileName       = print.prt
  FileAccess     = Append
+1 −1
Original line number Diff line number Diff line
@@ -16,5 +16,5 @@ commands:
		VEL_AZM = 292.6602745 \
		VEL_HORIZ = 1.6212918 \
		VEL_RADIAL = -0.0056892 > /dev/null;
	catlab from=$(OUTPUT)/apolloPanImage.cub > $(OUTPUT)/label.pvl;
	catlab from=$(OUTPUT)/apolloPanImage.cub to=$(OUTPUT)/label.pvl > /dev/null;
	$(RM) $(OUTPUT)/apolloPanImage.cub > /dev/null;
+1 −1
Original line number Diff line number Diff line
@@ -16,5 +16,5 @@ commands:
	tabledump from=$(OUTPUT)/PSP_007556_2010_RED5.balance.cropped.cub \
	name=InstrumentPointing \
	to=$(OUTPUT)/red5.instrumentPointing.csv > /dev/null;
	catlab from=$(OUTPUT)/PSP_007556_2010_RED5.balance.cropped.cub > $(OUTPUT)/red5.pvl
	catlab from=$(OUTPUT)/PSP_007556_2010_RED5.balance.cropped.cub to=$(OUTPUT)/red5.pvl > /dev/null;
	$(RM) $(OUTPUT)/PSP_007556_2010_RED4.balance.cropped.cub $(OUTPUT)/PSP_007556_2010_RED5.balance.cropped.cub from.lis print.prt > /dev/null;
+1 −1
Original line number Diff line number Diff line
@@ -16,5 +16,5 @@ commands:
	tabledump from=$(OUTPUT)/PSP_007556_2010_RED5.balance.cropped.cub \
	name=InstrumentPointing \
	to=$(OUTPUT)/red5.instrumentPointing.csv > /dev/null;
	catlab from=$(OUTPUT)/PSP_007556_2010_RED5.balance.cropped.cub > $(OUTPUT)/red5.pvl;
	catlab from=$(OUTPUT)/PSP_007556_2010_RED5.balance.cropped.cub to=$(OUTPUT)/red5.pvl > /dev/null;
	$(RM) $(OUTPUT)/PSP_007556_2010_RED4.balance.cropped.cub $(OUTPUT)/PSP_007556_2010_RED5.balance.cropped.cub from.lis print.prt > /dev/null;
+1 −1
Original line number Diff line number Diff line
@@ -7,6 +7,6 @@ include $(ISISROOT)/make/isismake.tsts
commands:
	ls $(INPUT)/*.cub > $(OUTPUT)/inputlist.txt;                                           \
	$(APPNAME) fromlist=$(OUTPUT)/inputlist.txt mos=$(OUTPUT)/mos.cub > /dev/null;         \
	catlab from=$(OUTPUT)/mos.cub > $(OUTPUT)/mos.txt;                                     \
	catlab from=$(OUTPUT)/mos.cub to=$(OUTPUT)/mos.txt > /dev/null;                                     \
	$(RM) $(OUTPUT)/mos.cub;                                                               \
	$(RM) $(OUTPUT)/inputlist.txt;
Loading