diff options
| -rw-r--r-- | lab_6/unity/test/rakefile | 4 | ||||
| -rw-r--r-- | lab_6/unity/test/tests/Testfoo.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lab_6/unity/test/rakefile b/lab_6/unity/test/rakefile index 779605e..94abf48 100644 --- a/lab_6/unity/test/rakefile +++ b/lab_6/unity/test/rakefile @@ -23,8 +23,8 @@ task :prepare_for_tests => TEMP_DIRS include RakefileHelpers
-# Load proper GCC as defult configuration
-DEFAULT_CONFIG_FILE = 'gcc_32.yml'
+# Load proper GCC as default configuration +DEFAULT_CONFIG_FILE = 'gcc_64.yml' configure_toolchain(DEFAULT_CONFIG_FILE)
desc "Test unity with its own unit tests"
diff --git a/lab_6/unity/test/tests/Testfoo.c b/lab_6/unity/test/tests/Testfoo.c index 72e0c1a..eac2bee 100644 --- a/lab_6/unity/test/tests/Testfoo.c +++ b/lab_6/unity/test/tests/Testfoo.c @@ -81,4 +81,4 @@ void testTEST_ASSERT_BIT_HIGH (void) void testsquareNumber (void)
{
-}
\ No newline at end of file +}
|