~chromium-team/chromium-browser/artful-beta

« back to all changes in this revision

Viewing changes to debian/tests/webapps

  • Committer: Chad Miller
  • Date: 2013-07-05 15:32:43 UTC
  • mto: This revision was merged to the branch mainline in revision 912.
  • Revision ID: chad.miller@canonical.com-20130705153243-6ar802i7dxk5do15
First attempt at autopkgtests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
set -x
 
4
set -e
 
5
 
 
6
df -h
 
7
free
 
8
 
 
9
SRCDIR=$(pwd)
 
10
WORKDIR=$(mktemp -d)
 
11
trap "rm -rf ${WORKDIR}" 0 INT QUIT ABRT PIPE TERM
 
12
 
 
13
ulimit -c unlimited
 
14
 
 
15
# about:settings  Advanced
 
16
# "Notify me when the website I am visiting can run as an application"
 
17
 
 
18
 
 
19
# check that chrome.tld and chrome.infobars are found (available only to
 
20
# extensions e.g. in background pages)
 
21
 
 
22
 
 
23
# that for the /proc/<pid>environ for the chromium process is not messed up
 
24
 
 
25
 
 
26
# validate that you don't see the "webapps plugin requires your authotization"
 
27