Revision 136
Added by Aaron Marcuse-Kubitza almost 13 years ago
scripts/test/map | ||
---|---|---|
40 | 40 |
function toXml() |
41 | 41 |
{ |
42 | 42 |
out="$stem.$out_fmt.xml" |
43 |
(set -x; ../map "../../mappings/$src-$out_fmt.$table.csv" >"output/$out"\ |
|
44 |
&& diff "accepted_output/$out" "output/$out") |
|
43 |
( |
|
44 |
set -x |
|
45 |
../map "../../mappings/$src-$out_fmt.$table.csv" >"output/$out" || exit |
|
46 |
diff "accepted_output/$out" "output/$out" || true |
|
47 |
) |
|
45 | 48 |
} |
46 | 49 |
|
47 | 50 |
function toDb() |
Also available in: Unified diff
test/map: Ignore diff exit status