~ubuntu-branches/ubuntu/vivid/augeas/vivid-proposed

« back to all changes in this revision

Viewing changes to tests/lens-openshift_http.sh

  • Committer: Package Import Robot
  • Author(s): Raphaël Pinson
  • Date: 2014-12-01 10:49:19 UTC
  • mfrom: (1.6.1) (24.1.3 sid)
  • Revision ID: package-import@ubuntu.com-20141201104919-lalkacyk0i5fndg5
Tags: 1.3.0-0ubuntu1
* New upstream version
* Include d/p/0003_Link_pthread.patch again

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
# Run one lens test.
 
3
# Derive names of inputs from the name of this script.
 
4
 
 
5
[ -n "$abs_top_srcdir" ] || abs_top_srcdir=$TOPDIR
 
6
LENS_DIR=$abs_top_srcdir/lenses
 
7
 
 
8
me=`echo "$0"|sed 's,.*/lens-\(.*\)\.sh$,\1,'`
 
9
 
 
10
t=$LENS_DIR/tests/test_$me.aug
 
11
 
 
12
if [ -n "$VALGRIND" ] ; then
 
13
  exec $VALGRIND $AUGPARSE --nostdinc -I "$LENS_DIR" "$t"
 
14
else
 
15
  exec augparse --nostdinc -I "$LENS_DIR" "$t"
 
16
fi