Unverified Commit 15fe9731 authored by Tim Giroux's avatar Tim Giroux Committed by GitHub
Browse files

pointreg app-to-gtest (#4205)



* basic app conversion

* add test cases

* split test cases and address PR review

* ThreeImageNetwork already has cube population upstream

* address Fixtures.cpp discrepancy

* move cube reopens to match in merge conflict

* added fixtures

Co-authored-by: default avatarKelvin Rodriguez <kr788@nau.edu>
Co-authored-by: default avatarKelvin <kelvinrr@icloud.com>
parent 5d540c00
Loading
Loading
Loading
Loading
+12 −823

File changed.

Preview size limit exceeded, changes collapsed.

+836 −0

File added.

Preview size limit exceeded, changes collapsed.

+11 −0
Original line number Diff line number Diff line
#ifndef pointreg_h
#define pointreg_h

#include "UserInterface.h"
#include "Pvl.h"

namespace Isis{
  extern void pointreg(UserInterface &ui, Pvl *appLog);
}

#endif
+0 −4
Original line number Diff line number Diff line
BLANKS = "%-6s"    
LENGTH = "%-40s"

include $(ISISROOT)/make/isismake.tststree
+0 −15
Original line number Diff line number Diff line
APPNAME = pointreg

redPointregLog.txt.IGNORELINES = Processed

include $(ISISROOT)/make/isismake.tsts

commands:
	$(LS) $(INPUT)/*.cub > $(OUTPUT)/cub.lis;
	$(APPNAME) fromlist=$(OUTPUT)/cub.lis \
	cnet=$(INPUT)/red.net \
	deffile=$(INPUT)/autoRegTemplate.def \
	onet=$(OUTPUT)/redOutputCnet.net \
	flatfile=$(OUTPUT)/redFlatFile.csv \
	points=nonignored > $(OUTPUT)/redPointregLog.txt;
	$(RM) $(OUTPUT)/cub.lis;
Loading