add testcase for external caller exceeding our thread limit
This commit is contained in:
parent
13d411677f
commit
97d802e3ed
23
.drone.yml
23
.drone.yml
|
@ -166,6 +166,29 @@ steps:
|
||||||
- make -C ctest $COMMON_FLAGS
|
- make -C ctest $COMMON_FLAGS
|
||||||
- make -C utest $COMMON_FLAGS
|
- make -C utest $COMMON_FLAGS
|
||||||
- make -C cpp_thread_test dgemm_tester
|
- make -C cpp_thread_test dgemm_tester
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: arm64_numpy_test
|
||||||
|
|
||||||
|
platform:
|
||||||
|
os: linux
|
||||||
|
arch: arm64
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Build and Test
|
||||||
|
image: ubuntu:18.04
|
||||||
|
environment:
|
||||||
|
CC: gcc
|
||||||
|
COMMON_FLAGS: 'NUM_THREADS=8'
|
||||||
|
commands:
|
||||||
|
- echo "MAKE_FLAGS:= $COMMON_FLAGS"
|
||||||
|
- apt-get update -y
|
||||||
|
- apt-get install -y make $CC gfortran perl python numpy wget
|
||||||
|
- $CC --version
|
||||||
|
- make QUIET_MAKE=1 $COMMON_FLAGS
|
||||||
|
- wget https://85.214.232.120:/numpycrash.py
|
||||||
|
- python numpycrash.py
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: epyc_native_test
|
name: epyc_native_test
|
||||||
|
|
Loading…
Reference in New Issue