File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
43
43
- A missing ` examples ` directory no longer causes a crash in ` cpp_library.rb `
44
44
- Referring to an undefined platform no longer causes a crash; it's now a helpful error message
45
45
- A copy/paste error that prevented compiler warning flags from being supplied has been fixed, via jgfoster
46
+ - RSpec was not communicating compile errors from unit test executables that failed to build. Now it does, via jgfoster
46
47
47
48
### Security
48
49
Original file line number Diff line number Diff line change 89
89
end
90
90
end
91
91
92
- it "#{ tfn } builds successfully" do
92
+ it "#{ tfn } builds successfully and passes tests " do
93
93
expect ( @exe ) . not_to be nil
94
- end
95
- it "#{ tfn } passes tests" do
96
- skip "Can't run the test program because it failed to build" if @exe . nil?
97
94
expect ( @cpp_library . run_test_file ( @exe ) ) . to_not be_falsey
98
95
end
99
96
end
You can’t perform that action at this time.
0 commit comments