mirror of
https://github.com/throwtheswitch/cexception.git
synced 2026-06-05 21:24:36 +00:00
Updated to point at HEAD of Unity master branch.
Updated initialization of an array of cexception structs to use nested brace: { 0 } => {{ 0 }}
This commit is contained in:
+1
-1
@@ -1,3 +1,3 @@
|
||||
[submodule "vendor/unity"]
|
||||
path = vendor/unity
|
||||
url = git@github.com:ThrowTheSwitch/Unity.git
|
||||
url = https://github.com:throwtheswitch/unity.git
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#include "CException.h"
|
||||
|
||||
volatile CEXCEPTION_FRAME_T CExceptionFrames[CEXCEPTION_NUM_ID] = { 0 };
|
||||
volatile CEXCEPTION_FRAME_T CExceptionFrames[CEXCEPTION_NUM_ID] = {{ 0 }};
|
||||
|
||||
//------------------------------------------------------------------------------------------
|
||||
// Throw
|
||||
|
||||
+6
-5
@@ -22,8 +22,9 @@ SYMBOLS = '-DTEST -DCEXCEPTION_USE_CONFIG_FILE'
|
||||
|
||||
CLEAN.include("#{HERE}*.out")
|
||||
|
||||
task :default => [:clobber, :test]
|
||||
task :cruise => [:no_color, :default]
|
||||
task :no_color do
|
||||
$colour_output = false
|
||||
end
|
||||
|
||||
desc "performs a quick set of unit tests to confirm you're ready to go"
|
||||
task :test do
|
||||
@@ -36,6 +37,6 @@ task :test do
|
||||
report output
|
||||
end
|
||||
|
||||
task :no_color do
|
||||
$colour_output = false
|
||||
end
|
||||
task :default => [:clobber, :test]
|
||||
task :ci => [:no_color, :default]
|
||||
task :cruise => :ci
|
||||
|
||||
Vendored
+1
-1
Submodule vendor/unity updated: 17663feed2...47a778d606
Reference in New Issue
Block a user