disabled the test of the "subcases_and_bdd" example for GCC 4.4 under osx - for some reason after an exception is thrown the program quits even though it should be caught
diff --git a/scripts/exec_test.cmake b/scripts/exec_test.cmake
index e6d99a3..64847b6 100644
--- a/scripts/exec_test.cmake
+++ b/scripts/exec_test.cmake
@@ -37,9 +37,13 @@
file(READ ${TEST_OUTPUT_FILE} orig)
file(READ ${TEST_TEMP_FILE} temp)
+ message("==========================================================================")
message("== CONTENTS OF ${TEST_OUTPUT_FILE}")
+ message("==========================================================================")
message("${orig}")
+ message("==========================================================================")
message("== CONTENTS OF ${TEST_TEMP_FILE}")
+ message("==========================================================================")
message("${temp}")
set(CMD_RESULT "Output is different from reference file!")
endif()
diff --git a/scripts/update.py b/scripts/update.py
index 14cc863..67fecc9 100644
--- a/scripts/update.py
+++ b/scripts/update.py
@@ -72,6 +72,8 @@
os.system("git add " + examples + dir + "/README.md")
'''
+sys.exit(0) # for now dont continue to update the wandbox link - working with the api has changed
+
# update main readme 'try it online' badge permalink
print("updating main readme")
proc = subprocess.Popen('python send_to_wandbox.py ../doctest/ ' + examples + "hello_world/main.cpp", stdout = subprocess.PIPE)