~ubuntu-branches/ubuntu/wily/libpostscriptbarcode/wily

« back to all changes in this revision

Viewing changes to tests/test_monolithic/run

  • Committer: Package Import Robot
  • Author(s): Alexander List
  • Date: 2014-06-06 17:37:19 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20140606173719-rvjku8todk2j353x
Tags: 20140312-2
* acknowledge package from maintainer
* debian/control: Use latest Standards-Version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
TEST=$(dirname $0)
 
4
 
 
5
echo -n "Running $TEST: "
 
6
 
 
7
gs -dNOPAUSE -dSAFER -dQUIET -dBATCH -sDEVICE=nullpage build/monolithic/barcode_with_sample.ps
 
8
 
 
9
if [ $? -eq 0 ]; then
 
10
  echo "PASS"
 
11
  exit 0
 
12
else
 
13
  echo "FAIL"
 
14
  exit 1
 
15
fi
 
16