aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-02-09 07:36:05 +0800
committerchriseth <chris@ethereum.org>2018-02-09 07:36:05 +0800
commit4777fefc0970a74301d7c02e3b2a6a2d0b9ccbca (patch)
tree4feac428a98843262fe26ba493533bb43146be92
parent55bffcc7584d74f9e5a9f5f4288978ddf7378acc (diff)
downloaddexon-solidity-4777fefc0970a74301d7c02e3b2a6a2d0b9ccbca.tar.gz
dexon-solidity-4777fefc0970a74301d7c02e3b2a6a2d0b9ccbca.tar.zst
dexon-solidity-4777fefc0970a74301d7c02e3b2a6a2d0b9ccbca.zip
Store test results.
-rw-r--r--circle.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/circle.yml b/circle.yml
index 2a09cb19..d1c8e35f 100644
--- a/circle.yml
+++ b/circle.yml
@@ -81,12 +81,15 @@ jobs:
- run:
name: Commandline tests
command: test/cmdlineTests.sh
+ - run: mkdir -p test_results
- run:
name: Test without optimizer (exclude IPC tests)
- command: build/test/soltest --show-progress -- --no-ipc
+ command: build/test/soltest --logger=JUNIT,test_suite,test_results/no_opt.xml -- --no-ipc
- run:
name: Test with optimizer (exclude IPC tests)
- command: build/test/soltest --show-progress -- --optimize --no-ipc
+ command: build/test/soltest --logger=JUNIT,test_suite,test_results/opt.xml -- --optimize --no-ipc
+ - store_test_results:
+ path: test_results/
workflows:
version: 2