Skip to content

Commit

Permalink
forgot to check these in
Browse files Browse the repository at this point in the history
  • Loading branch information
dbox-fnal committed Mar 19, 2024
1 parent db3fe3e commit e0d9aa4
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 1 deletion.
12 changes: 12 additions & 0 deletions ftt/bin/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@




all: install

install:

clean:
rm -f ftt_*


16 changes: 16 additions & 0 deletions ftt/lib/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@




all: install

install: libftt.a libftt_test.a

libftt.a:
/bin/cp ../ftt_lib/libftt.a .
libftt_test.a:
/bin/cp ../ftt_test/libftt_test.a .
clean:
rm -f *.a


2 changes: 1 addition & 1 deletion test/writefm_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def write(tape_driver, f_size, block):
if bytes_written == BLOCK_SIZE:
tot_written = tot_written + bytes_written
else:
raise Error("bytes to write %s, bytes written %s total %s"%(BLOCK_SIZE, bytes_written, tot_written))
raise Exception("bytes to write %s, bytes written %s total %s"%(BLOCK_SIZE, bytes_written, tot_written))
except:
exc, msg = sys.exc_info()[:2]
print "Exception while doing write. Total written %s"%(tot_written,)
Expand Down

0 comments on commit e0d9aa4

Please sign in to comment.