~alan-griffiths/miral/debug

« back to all changes in this revision

Viewing changes to miral-qt/tests/convert-to-gles.sh

  • Committer: Gerry Boland
  • Date: 2016-06-01 22:06:51 UTC
  • mto: This revision was merged to the branch mainline in revision 178.
  • Revision ID: gerry.boland@canonical.com-20160601220651-ge508tffql4e7u7c
Import QtMir code into miral-qt subdirectory. Disabled by default, use -DMIRAL_ENABLE_QT=1 to build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -eux
 
4
 
 
5
# Skip this test inside qtmir-gles package as the patch is already applied.
 
6
[ "$(dpkg-parsechangelog --show-field Source)" = "qtmir" ] || exit 0
 
7
 
 
8
QUILT_EXIT=0
 
9
export QUILT_PATCHES=debian/gles-patches
 
10
 
 
11
quilt push -a || QUILT_EXIT=$?
 
12
quilt pop -a
 
13
 
 
14
exit $QUILT_EXIT