Skip to content

Commit

Permalink
Merge pull request #2 from allevin/addtesting
Browse files Browse the repository at this point in the history
Dont echo compile warnings to output
  • Loading branch information
allevin authored Oct 24, 2020
2 parents 8067e3b + 58936f3 commit 5c4b2a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testsuite_default_juno.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def _buildJunoAssembler(self):
juno_assembler_dir = "{0}/../asm/".format(test_path)

# Build the juno assembler
cmd = "make -C {0} > /dev/null".format(juno_assembler_dir)
cmd = "make -C {0} > /dev/null 2>&1".format(juno_assembler_dir)
cmd_rtn = os.system(cmd)
build_success = cmd_rtn == 0
self.assertTrue(build_success, "Juno Assembler failed to build properly; Makefile rtn = {0}".format(cmd_rtn))

0 comments on commit 5c4b2a5

Please sign in to comment.