Skip to content

Commit

Permalink
Updated paths to chaincode directories to use relative paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcoblenz committed Sep 3, 2019
1 parent 73f161e commit f8647e4
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion resources/tests/endToEndTests/BasicGenericsTests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ sbt "runMain edu.cmu.cs.obsidian.Main resources/tests/compilerTests/BasicGeneric
# Then go to run the tests
cd network-framework
./down.sh
./up.sh -s BasicGenerics
./up.sh -s ../BasicGenerics

check() {
echo "$1"
Expand Down
2 changes: 1 addition & 1 deletion resources/tests/endToEndTests/IntContainerTest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ sbt "runMain edu.cmu.cs.obsidian.Main resources/tests/compilerTests/IntContainer
# Then go to run the tests
cd network-framework
./down.sh
./up.sh -s IntContainer
./up.sh -s ../IntContainer


testVals=(5 7 8 9 10)
Expand Down
2 changes: 1 addition & 1 deletion resources/tests/endToEndTests/MultipleConstructorsTest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ sbt "runMain edu.cmu.cs.obsidian.Main resources/tests/compilerTests/MultipleCons
# Then go to run the tests
cd network-framework
./down.sh
./up.sh -s MultipleConstructors
./up.sh -s ../MultipleConstructors

check() {
echo "$1"
Expand Down
2 changes: 1 addition & 1 deletion resources/tests/endToEndTests/TinyVendingMachineTest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cd ../../../
sbt "runMain edu.cmu.cs.obsidian.Main resources/demos/TinyVendingMachine/TinyVendingMachine.obs"
# Then go to run the tests
cd network-framework
./up.sh -s TinyVendingMachine
./up.sh -s ../TinyVendingMachine

CANDY=$(./instantiateOther.sh -q Candy)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ sbt "runMain edu.cmu.cs.obsidian.Main resources/tests/compilerTests/TransactionI
# Then go to run the tests
cd network-framework
./down.sh
./up.sh -s TransactionInConstructor
./up.sh -s ../TransactionInConstructor

check() {
echo "$1"
Expand Down
2 changes: 1 addition & 1 deletion resources/tests/endToEndTests/lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ init() {
./upgrade.sh
else
./down.sh
./up.sh -s "$1"
./up.sh -s "../$1"
fi
}

Expand Down

0 comments on commit f8647e4

Please sign in to comment.