File: testsuite.sh

package info (click to toggle)
elkcode 10.4.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,480 kB
  • sloc: f90: 52,323; perl: 962; makefile: 345; sh: 296; python: 105; ansic: 67
file content (9 lines) | stat: -rwxr-xr-x 215 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
#!/bin/bash

(cd tests; bash ./tests_quick.sh /usr/bin/elk-lapw)
for i in tests/test-*/test.log; do	\
  if [ -e $$i ]; then			\
    echo "Error for test $$i:";		\
    sed -n -e '/^Error/,$$p' $$i;	\
  fi					\
done