Test script updates to cater for the revised tree layout. Allows for separate user...
authorfsgqa <fsgqa>
Wed, 14 Jan 2004 02:29:30 +0000 (02:29 +0000)
committerfsgqa <fsgqa>
Wed, 14 Jan 2004 02:29:30 +0000 (02:29 +0000)
040
README
tools/README.auto-qa
tools/auto-qa
tools/srcdiff

diff --git a/040 b/040
index 57f67306749a089bcdb6371536a8e6f9b072c14a..cdd0b1e76815b41460f656914e871f3dacd74d6e 100755 (executable)
--- a/040
+++ b/040
@@ -59,7 +59,7 @@ then
     _notrun "Can't run srcdiff without WORKAREA set"
 fi
 
-if [ ! -f $WORKAREA/cmd/xfstests/tools/srcdiff ]
+if [ ! -f $WORKAREA/xfstests/tools/srcdiff ]
 then
     _notrun "Can't find srcdiff tool under \"$WORKAREA\""
 fi
@@ -69,12 +69,12 @@ then
     _notrun "Can't find XFS source under \"$WORKAREA\""
 fi
 
-if [ ! -d $WORKAREA/cmd/xfsprogs/include ]
+if [ ! -d $WORKAREA/xfsprogs/include ]
 then
     _notrun "Can't find XFS command headers under \"$WORKAREA\""
 fi
 
-cd $WORKAREA/cmd/xfstests
+cd $WORKAREA/xfstests
 echo Silence is golden.
 perl tools/srcdiff -q >$seq.full
 if ! diff $seq.full $seq.good >/dev/null; then
diff --git a/README b/README
index b5266deb3b07fb8b32854016c8e9ce6a7b5436a0..792350f08c8db7b92927ea459bba31ad28565b19 100644 (file)
--- a/README
+++ b/README
@@ -45,7 +45,7 @@ Preparing system for tests:
     
 Running tests:
 
-    - cd cmd/xfs/stress
+    - cd xfstests
     - ./check 001 002 003 ... 
     
     The check script tests the return value of each script, and
index 7b62f6b1ada177462daa5d6de06d75856fcddee4..de1c14dba2c5f10d450ce2ab3b9ec6f6f4d3a275 100644 (file)
@@ -4,13 +4,13 @@ ______________________                                      ______________
 
        - pick/create a user to run auto-qa and check they 
             can use ptools to check out of the tree
-       - add your host to cmd/xfstests/common.config
-       - add your host to cmd/xfstests/tools/auto-qa
+       - add your host to xfstests/common.config
+       - add your host to xfstests/tools/auto-qa
                check both these files in
        - make a directory "$HOME/qa"
        - make a workarea "$HOME/qa/linux-xfs" for linux-xfs
                (easiest to copy one from elsewhere)
-       - cd $HOME/qa ; ln -s linux-xfs/cmd/xfstests/tools/auto-qa .
+       - cd $HOME/qa ; ln -s xfs-cmds/xfstests/tools/auto-qa .
                (auto-qa must be a link into it's own source tree
                so it can update itself)
        - copy an appropriate .config file to
@@ -67,7 +67,7 @@ Notes:
        - When run in "cron-init" or "init" states, the script
                will p_tupdate itself and restart. If you start
                with an empty source tree, you'll need to check
-               out the cmd/xfstests/tools/auto-qa script before it'll
+               out the xfstests/tools/auto-qa script before it'll
                work (duh).
 
 good luck.
index e612ff98a4ca62b05a36e30c360497938e1549fd..3c9b06231e2b98aa15eeaa2a1ee1240076a38db7 100755 (executable)
@@ -66,10 +66,10 @@ _fail()
 
 _get_kernel_version()
 {
-    [ -x "$WORKAREA" ] \
-       || _fail "can't access workarea $WORKAREA"
-    [ -r "$WORKAREA/linux/Makefile" ] \
-       || _fail "can't read makefile $WORKAREA/linux/Makefile"
+    [ -x "$KWORKAREA" ] \
+       || _fail "can't access kernel workarea $KWORKAREA"
+    [ -r "$KWORKAREA/Makefile" ] \
+       || _fail "can't read kernel makefile $KWORKAREA/Makefile"
 
     eval `awk '
        BEGIN { FS = "[ \t=]+" }
@@ -80,7 +80,7 @@ _get_kernel_version()
        END { 
            print "VERSION=" a "." b "." c d " ; SVERSION=" a "." b "." c
        }
-   ' < $WORKAREA/linux/Makefile`
+   ' < $KWORKAREA/Makefile`
 }
 
 # this should be constant
@@ -88,18 +88,18 @@ _get_kernel_version()
 ROOT="$HOME/qa"
 HOST=`hostname -s`
 if [ ! -z "$CVSROOT" ]; then
-    export WORKAREA="$ROOT/linux-2.4-xfs"
+    export WORKAREA="$ROOT/xfs-cmds"
 else
-    [ -z "$WORKAREA" ] && export WORKAREA="$ROOT/linux-xfs"
+    [ -z "$WORKAREA" ] && export WORKAREA="$ROOT/xfs-cmds"
 fi
 
 
 export PATH="/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin/ptools:/usr/local/bin"
 STATE=$ROOT/qa.state
-QADIR="$WORKAREA/cmd/xfstests"
+QADIR="$WORKAREA/xfstests"
 SUDO="su -c"
 CONFIG="$ROOT/$HOST.config"
-COMMON_CONFIG="$WORKAREA/cmd/xfstests/common.config"
+COMMON_CONFIG="$WORKAREA/xfstests/common.config"
 SH="/bin/sh"
 LOG="$ROOT/qa.log"
 
@@ -173,7 +173,7 @@ _restart()
 _update_autoqa_file()
 {
     SELF="$ROOT/auto-qa"
-    SELF_UPDATE="cmd/xfstests/tools/auto-qa"
+    SELF_UPDATE="xfstests/tools/auto-qa"
     if [ -z "$CVSROOT" ]; then
            cmd="p_tupdate $SELF_UPDATE"
     else
@@ -186,22 +186,22 @@ _update_workarea()
 {
     if [ -z "$CVSROOT" ]; then
        _log "  *** p_tupdate"
-       cd $WORKAREA 
-       p_tupdate 2>&1 \
+       cd "$1"
+       WORKAREA="$1" p_tupdate 2>&1 \
                        || _fail "          !!! p_tupdate failed"
 
        _log "  *** p_check/p_purge"
-       cd $WORKAREA 
-       p_check -s | p_purge -yiu 2>&1 \
+       cd "$1"
+       WORKAREA="$1" p_check -s | p_purge -yiu 2>&1 \
                        || _fail "          !!! p_check/p_purge failed"
 
        _log "  *** non-trunk files"
-       cd $WORKAREA 
-       p_list -c 2>&1 \
+       cd "$1"
+       WORKAREA="$1" p_list -c 2>&1 \
                        || _fail "          !!! p_list failed"
     else
        _log "  *** cvs update"
-       cd $WORKAREA
+       cd "$1"
        cvs -z3 update -d
     fi
 }
@@ -234,9 +234,9 @@ _test_mount()
 
 _i386_install()
 {
-    _sudo cp -f $WORKAREA/linux/arch/i386/boot/bzImage $IMAGE 2>&1 \
+    _sudo cp -f "$KWORKAREA/arch/i386/boot/bzImage" "$IMAGE" 2>&1 \
                || _fail "          !!! install kernel failed"
-    _sudo cp -f $WORKAREA/linux/System.map $SYSTEMMAP 2>&1 \
+    _sudo cp -f "$KWORKAREA/System.map" "$SYSTEMMAP" 2>&1 \
                || _fail "          !!! install kernel failed"
     if [ -z "$KMODULES" -o "$KMODULES" = yes ]; then
        _sudo make EXTRAVERSION=-$EXTRA modules_install 2>&1 \
@@ -269,7 +269,7 @@ _ia64_restart()
 }
 
 
-_log "*** linux-xfs QA (`date`)"
+_log "*** XFS QA (`date`)"
 
 _get_state
 
@@ -303,6 +303,7 @@ fi
 
 [ "$UID" -eq 0 ]       && _fail "    !!! QA most be run as a normal user"
 [ -d "$ROOT" ]         || _fail "    !!! QA root \"$ROOT\" not found"
+[ -d "$KWORKAREA" ]    || _fail "    !!! QA kernel \"$KWORKAREA\" not found"
 [ -d "$WORKAREA" ]     || _fail "    !!! QA workarea \"$WORKAREA\" not found"
 [ -r "$CONFIG" ]       || _fail "    !!! Can't read config file $CONFIG"
 . "$COMMON_CONFIG"     || _fail "    !!! Couldn't source $COMMON_CONFIG"
@@ -347,7 +348,8 @@ do
            ;;
        
        *update)
-           _update_workarea
+           _update_workarea "$KWORKAREA"
+           _update_workarea "$WORKAREA"
            new_state="cleantools"
            ;;
 
@@ -355,8 +357,8 @@ do
            # we need to configure or else we might fail to clean
            for pkg in attr acl xfsprogs dmapi xfsdump xfstests
            do
-               [ -d $WORKAREA/cmd/$pkg ] || continue
-               cd $WORKAREA/cmd/$pkg
+               [ -d $WORKAREA/$pkg ] || continue
+               cd $WORKAREA/$pkg
                _log "  *** clean $pkg tools"
                make realclean 2>&1 \
                        || _fail "          !!! clean $pkg failed"
@@ -368,8 +370,8 @@ do
            _log "      *** build and install tools"
            for pkg in attr acl xfsprogs dmapi xfsdump xfstests 
            do
-               [ -d $WORKAREA/cmd/$pkg ] || continue
-               cd $WORKAREA/cmd/$pkg
+               [ -d $WORKAREA/$pkg ] || continue
+               cd $WORKAREA/$pkg
 
                # use e-fence - but this will only take effect on configure
                make configure 2>&1 \
@@ -390,13 +392,13 @@ do
            ;;
 
        *cleankernel)
-           _log "      *** clean linux"
-           cd $WORKAREA/linux
+           _log "      *** clean kernel"
+           cd "$KWORKAREA"
            make mrproper 2>&1 \
-                       || _fail "          !!! clean linux failed"
+                       || _fail "          !!! clean kernel failed"
 
            _log "      *** install configuration file"
-           cp -f $CONFIG $WORKAREA/linux/.config 2>&1 \
+           cp -f $CONFIG "$KWORKAREA/.config" 2>&1 \
                        || _fail "          !!! failed to install config"
            
            _log "      *** remove version file"
@@ -413,7 +415,7 @@ do
            # we better start from scratch if this fails
            _change_state "cleankernel"
            
-           cd $WORKAREA/linux
+           cd "$KWORKAREA"
            # we want to use default options for any new config options.
            echo -e "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n" | \
                make EXTRAVERSION=-$EXTRA oldconfig 2>&1 \
@@ -429,7 +431,7 @@ do
            
            _change_state "clean" ; # we better start from scratch if this fails
            
-           cd $WORKAREA/linux
+           cd "$KWORKAREA"
            [ -z "$KTARGET" ] && KTARGET=bzImage
            [ -z "$KMODULES" -o "$KMODULES" = yes ] && \
                KTARGET="$KTARGET modules"
@@ -443,7 +445,7 @@ do
            _sudo rm -rf $MODULES
            
            _log "      *** install kernel"
-           cd $WORKAREA/linux
+           cd "$KWORKAREA"
            case `uname -m`
            in
                i386|i686)      _i386_install ;;
index 9dd809530811faf07b50012aa1b76361ebebb6c0..b64ca68d928ce084e4b5182b219f2b6e18912427 100755 (executable)
@@ -13,7 +13,7 @@ use strict;
 # 
 # NB: to cross check that srcdiff is finding all the functions in the
 #     user source file, providing you have "mkproto" installed, you
-#     can "cd cmd/xfsprogs/libxfs" and cut&paste this in a bourne shell:
+#     can "cd xfsprogs/libxfs" and cut&paste this in a bourne shell:
 #     $ for file in xfs_*.c; do
 #     > mkproto -nps < $file | perl -ne '
 #     > END { print "    $count\t- " }
@@ -24,7 +24,9 @@ use strict;
 # 
 
 die "WORKAREA not set" unless defined $ENV{'WORKAREA'};
+die "KWORKAREA not set" unless defined $ENV{'KWORKAREA'};
 chdir $ENV{'WORKAREA'};
+my $kworkarea = $ENV{'KWORKAREA'};
 my $xdiff = $ENV{'XDIFF'};
 my $quiet=0;
 my $usage=0;
@@ -82,10 +84,10 @@ sub straightdiff {
 sub m4macrodiff {
        my ( $package ) = @_;
 
-       foreach (`ls cmd/$package/m4/*.m4`) {
+       foreach (`ls $package/m4/*.m4`) {
                my $m4 = `basename $_`;
                chomp($m4);
-               straightdiff $m4, "cmd/$package/m4", "cmd/xfstests/m4";
+               straightdiff $m4, "$package/m4", "xfstests/m4";
        }
 }
 
@@ -93,18 +95,18 @@ my $first = shift @pkglist;
 foreach (@pkglist) {
        print "\n=== Checking $_ package ===\n";
        m4macrodiff $_;
-       straightdiff 'buildrules', "cmd/$first/include", "cmd/$_/include";
-       straightdiff 'buildmacros', "cmd/$first/include", "cmd/$_/include";
-       straightdiff 'Makefile', "cmd/$first/build", "cmd/$_/build";
-       straightdiff 'Makefile', "cmd/$first/build/rpm", "cmd/$_/build/rpm";
-       straightdiff 'Makefile', "cmd/$first/build/tar", "cmd/$_/build/tar";
+       straightdiff 'buildrules', "$first/include", "$_/include";
+       straightdiff 'buildmacros', "$first/include", "$_/include";
+       straightdiff 'Makefile', "$first/build", "$_/build";
+       straightdiff 'Makefile', "$first/build/rpm", "$_/build/rpm";
+       straightdiff 'Makefile', "$first/build/tar", "$_/build/tar";
 }
 print "\n=== Checking headers ===\n";
 foreach (@difflist) {
-       straightdiff $_, 'cmd/xfsprogs/include', 'linux/fs/xfs';
+       straightdiff $_, 'xfsprogs/include', "$kworkarea/fs/xfs";
 }
-straightdiff 'dmapi_kern.h', 'cmd/dmapi/include', 'linux/fs/xfs/dmapi';
-straightdiff 'dmapi.h', 'cmd/dmapi/include', 'linux/fs/xfs/dmapi';
+straightdiff 'dmapi_kern.h', 'dmapi/include', "$kworkarea/fs/xfs/dmapi";
+straightdiff 'dmapi.h', 'dmapi/include', "$kworkarea/fs/xfs/dmapi";
 
 # 
 # setstate
@@ -271,7 +273,7 @@ sub functiondiff {
        print "( Total: $count routine$plural checked in $file )\n" unless ($quiet);
 }
 
-# cmd/xfsprogs/{libxfs,libxlog}/* fs/xfs/*
+# xfsprogs/{libxfs,libxlog}/* fs/xfs/*
 my @funclist = qw(
        xfs_alloc.c  xfs_alloc_btree.c  xfs_attr_leaf.c
        xfs_bmap.c  xfs_bmap_btree.c  xfs_btree.c  xfs_da_btree.c
@@ -283,7 +285,7 @@ my @funclist = qw(
 
 print "\n=== Checking libxfs code ===\n";
 foreach (@funclist) {
-       functiondiff $_, 'cmd/xfsprogs/libxfs', 'linux/fs/xfs';
+       functiondiff $_, 'xfsprogs/libxfs', "$kworkarea/fs/xfs";
 }
 print "\n=== Checking libxlog code ===\n";
-functiondiff 'xfs_log_recover.c', 'cmd/xfsprogs/libxlog', 'linux/fs/xfs';
+functiondiff 'xfs_log_recover.c', 'xfsprogs/libxlog', "$kworkarea/fs/xfs";