Skip to content

Commit

Permalink
PR #231: Add missing macro definitions to fix CI failures
Browse files Browse the repository at this point in the history
Without this the CI fails. Both with current master and for all new PRs (e.g. #229)

GitHub PR #231

Copybara import of the project:

  - 7b968f4 Add missing macro definitions to fix CI failures by Tomasz Gorochowik <[email protected]>

Closes #231

PiperOrigin-RevId: 301421516
  • Loading branch information
tgorochowik authored and hzeller committed Mar 17, 2020
1 parent a4aaa60 commit c2e5040
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions verilog/CST/DPI_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
#include "common/util/range.h"
#include "verilog/analysis/verilog_analyzer.h"

#undef ASSERT_OK
#define ASSERT_OK(value) ASSERT_TRUE((value).ok())

namespace verilog {
namespace {

Expand Down
3 changes: 3 additions & 0 deletions verilog/CST/declaration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
#include "common/util/range.h"
#include "verilog/analysis/verilog_analyzer.h"

#undef ASSERT_OK
#define ASSERT_OK(value) ASSERT_TRUE((value).ok())

namespace verilog {
namespace {

Expand Down

0 comments on commit c2e5040

Please sign in to comment.