Skip to content

Commit 866506a

Browse files
Migration tests unit suite to fix error multiple definition of main'`
1 parent 63bfc7b commit 866506a

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

File renamed without changes.
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
function main() {
44
local clang_cxx="clang++"
55
local build_dir="build"
6-
local static_lib="../back_end/target/debug/libback_end.a"
6+
local static_lib="../src/back_end/target/debug/libback_end.a"
77
local config_test="config.cxx"
88

99
cd ..
10-
cd "back_end" || exit 1
10+
cd "src/back_end" || exit 1
1111
cargo build
12-
cd ..
13-
cd "tests" || exit 1
12+
cd ../..
13+
cd "tests-ffi" || exit 1
1414

1515
if [ ! -d "$build_dir" ]; then
1616
mkdir -p "$build_dir"

0 commit comments

Comments
 (0)