Skip to content

Commit

Permalink
changes master to main for gtest cmake dep (#1023)
Browse files Browse the repository at this point in the history
* changes master to main for gtest cmake dep

* fixes path
  • Loading branch information
rdaly525 authored Dec 3, 2021
1 parent 130566b commit a589c0d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/binary/test_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ def test_examples_noverilog(example):

libs = "-l commonlib,float,float_CW"
#Test input parsing and serializing to json
res = delegator.run(f"bin/coreir -i examples/{example} {libs} -o examples/build/{name}.json")
res = delegator.run(f"bin/coreir -i examples/no_verilog/{example} {libs} -o examples/build/{name}.json")
assert not res.return_code, res.out + res.err

#Test syntax of serialized json
res = delegator.run(f"bin/coreir -i examples/build/{name}.json {libs}")
assert not res.return_code, res.out + res.err
assert not res.return_code, res.out + res.err
2 changes: 1 addition & 1 deletion tests/gtest/CMakeLists.txt.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ project(googletest-download NONE)
include(ExternalProject)
ExternalProject_Add(googletest
GIT_REPOSITORY https://github.com/google/googletest.git
GIT_TAG master
GIT_TAG main
SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-src"
BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-build"
CONFIGURE_COMMAND ""
Expand Down

0 comments on commit a589c0d

Please sign in to comment.