mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-23 21:39:10 -04:00
minor update
This commit is contained in:
parent
dbe052594d
commit
efc7a971dc
2 changed files with 4 additions and 13 deletions
15
.travis.yml
15
.travis.yml
|
@ -72,22 +72,13 @@ jobs:
|
|||
name: unittest
|
||||
env: XLEN=32
|
||||
script: cp -r $HOME/build$XLEN build && cd build && ./ci/travis_run.py ./ci/regression.sh --unittest
|
||||
- stage: test
|
||||
name: isa
|
||||
env: XLEN=32
|
||||
script: cp -r $HOME/build$XLEN build && cd build && ./ci/travis_run.py ./ci/regression.sh --isa
|
||||
script: cp -r $HOME/build$XLEN build && cd build && ./ci/travis_run.py ./ci/regression.sh --kernel
|
||||
- stage: test
|
||||
name: isa64
|
||||
name: unittest64
|
||||
env: XLEN=64
|
||||
script: cp -r $HOME/build$XLEN build && cd build && ./ci/travis_run.py ./ci/regression.sh --isa
|
||||
- stage: test
|
||||
name: kernel
|
||||
env: XLEN=32
|
||||
script: cp -r $HOME/build$XLEN build && cd build && ./ci/travis_run.py ./ci/regression.sh --kernel
|
||||
- stage: test
|
||||
name: kernel64
|
||||
env: XLEN=64
|
||||
script: cp -r $HOME/build$XLEN build && cd build && ./ci/travis_run.py ./ci/regression.sh --kernel
|
||||
script: cp -r $HOME/build$XLEN build && cd build && ./ci/travis_run.py ./ci/regression.sh --kernel
|
||||
- stage: test
|
||||
name: regression
|
||||
env: XLEN=32
|
||||
|
|
|
@ -22,7 +22,7 @@ import re
|
|||
|
||||
def get_vma_size(elf_file):
|
||||
try:
|
||||
cmd = ['readelf', '-l', elf_file]
|
||||
cmd = ['readelf', '-l', '-W', elf_file]
|
||||
process = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
|
||||
output, errors = process.communicate()
|
||||
if process.returncode != 0:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue