diff options
| author | Fuwn <[email protected]> | 2026-02-26 10:39:30 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-02-26 10:40:00 -0800 |
| commit | 792a645ad714ed8e6d8af80d2cf2ab710f6a786e (patch) | |
| tree | 00868e4c4996e128134249de40d84e4c0e7fad1f | |
| parent | feat(lab_6): Add initial files (diff) | |
| download | cst456-792a645ad714ed8e6d8af80d2cf2ab710f6a786e.tar.xz cst456-792a645ad714ed8e6d8af80d2cf2ab710f6a786e.zip | |
fix(lab_6): default Unity rake target to gcc_64
| -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 +}
|