File: diff_f4sat-field-char.sh

package info (click to toggle)
msolve 0.9.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,116 kB
  • sloc: ansic: 41,977; sh: 1,919; makefile: 204
file content (16 lines) | stat: -rwxr-xr-x 261 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

file=f4sat-field-char

$(pwd)/msolve -f input_files/$file.ms -S -g2 -o test/diff/$file.res \
      -n2
if [ $? -gt 0 ]; then
    exit 1
fi

diff test/diff/$file.res output_files/$file.res
if [ $? -gt 0 ]; then
    exit 2
fi

rm test/diff/$file.res