Skip to content

Commit 249694e

Browse files
committed
More tests
1 parent 80c47d5 commit 249694e

File tree

5 files changed

+21
-2
lines changed

5 files changed

+21
-2
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,9 @@
3232
/report.txt
3333
/exampleRun_nml
3434
/*.dat
35+
/exampleRun2
36+
/neuromlLocal/testc302SigSim/*.dat
37+
/neuromlLocal/testc302SigSim/arm64
38+
/neuromlLocal/testc302SigSim/x86_64
39+
/neuromlLocal/testc302SigSim/report.txt
40+
/neuromlLocal/testc302SigSim/testc302NervousSystem

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ tests2: tests2.o NervousSystem.o random.o jsonUtils.o utils.o
6161
g++ $(CXXFLAGS) $(LDFLAGS) -pthread -o tests2 tests2.o NervousSystem.o random.o utils.o jsonUtils.o $(LIBS)
6262

6363
clean:
64-
rm -f *.o main tests tests2
64+
rm -f *.o neuromlLocal/*.o main tests tests2

neuromlLocal/LEMS_Worm2D.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<!--
44
5-
This LEMS file has been automatically generated using PyNeuroML v1.3.16 (libNeuroML v0.6.5)
5+
This LEMS file has been automatically generated using PyNeuroML v1.3.15 (libNeuroML v0.6.5)
66
77
-->
88

neuromlLocal/clean.sh

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
set -e
3+
4+
rm -rf arm64 x86_64 __pycache__
5+
6+
mv *.dat *.mod *_nrn.py *gv* report.txt /tmp || true

neuromlLocal/regenerate.sh

+7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
#!/bin/bash
22
set -ex
33

4+
./clean.sh
5+
46
ruff format *py
57

68
python regenerate.py
79

810
omv all -V
911

12+
cd testc302SigSim
13+
make clean all
14+
./testc302NervousSystem
15+
cd ..
16+

0 commit comments

Comments
 (0)