~townsend/ubuntu-app-launch/remove-xmir-helpers

« back to all changes in this revision

Viewing changes to tests/exec-test-nullstr.sh

  • Committer: Chris Townsend
  • Date: 2017-03-24 13:06:32 UTC
  • mfrom: (269.1.38 ubuntu-app-launch)
  • Revision ID: christopher.townsend@canonical.com-20170324130632-n52ashmczuy0vy4y
MergeĀ lp:ubuntu-app-launch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/bash -e
2
 
 
3
 
if [ "$PATH" != "$APP_DIR/lib/64bit-amazing/bin:$APP_DIR" ] ; then
4
 
        echo "Bad PATH: $PATH"
5
 
        exit 1
6
 
fi
7
 
 
8
 
if [ "$LD_LIBRARY_PATH" != "$APP_DIR/lib/64bit-amazing:$APP_DIR/lib" ] ; then
9
 
        echo "Bad LD_LIBRARY_PATH: $LD_LIBRARY_PATH"
10
 
        exit 1
11
 
fi
12
 
 
13
 
if [ "$QML2_IMPORT_PATH" != "$APP_DIR/lib/64bit-amazing" ] ; then
14
 
        echo "Bad QML import path: $QML2_IMPORT_PATH"
15
 
        exit 1
16
 
fi
17
 
 
18
 
exit 0