Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: third_party/xdg-utils/tests/tet_run

Issue 151098: Patch from mdm@google.com... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/
Patch Set: Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Name: svn:executable
+ *
OLDNEW
(Empty)
1 #!/bin/bash
2
3 ## FILL THIS IN or be sure environment is correct.
4 #XDG_TEST_DIR=
5 #TET_ROOT=
6
7 export XDG_TEST_NO_INTERACTIVE="true"
8
9 if [ -z "$XDG_TEST_DIR" ] ; then
10 # User didn't follow directions, make a guess.
11 XDG_TEST_DIR=`pwd`
12 fi
13 if [ -z "$TET_ROOT" ] ; then
14 # can't really guess
15 echo "TET_ROOT is not defined!!"
16 exit 1
17 fi
18 USING_TET="true"
19 TEST_GROUPS=`find "$XDG_TEST_DIR" -type d -name 'xdg-*'`
20 TEST_FILES=`find $TEST_GROUPS -name 't.*'`
21
22 ## load all the tests.
23 for t in $TEST_FILES; do
24 . "$t"
25 done
26
27 . "$XDG_TEST_DIR/include/testcontrol.sh"
28
29 tet_startup="test_setup"
30 tet_cleanup="test_cleanup"
31
32 ## $iclist and all $ic1 ... $icN variables are now defined.
33 echo "iclist: $iclist"
34
35 ## Launch TET
36 . "$TET_ROOT/lib/xpg3sh/tcm.sh"
OLDNEW
« no previous file with comments | « third_party/xdg-utils/tests/testrun ('k') | third_party/xdg-utils/tests/xdg-desktop-icon/data/desktop_icon_install.desktop » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698