chiark / gitweb /
Merge branch 'stable'
authorKarl Hasselström <kha@treskal.com>
Wed, 23 Jul 2008 21:24:57 +0000 (23:24 +0200)
committerKarl Hasselström <kha@treskal.com>
Thu, 24 Jul 2008 19:41:09 +0000 (21:41 +0200)
Conflicts:

setup.py

setup.cfg
setup.py
t/t2701-refresh-p.sh [new file with mode: 0755]

index 1eb8e9b92600a7bf6339a7fb79f9195148d98845..4359033a665b7943f2a7579e8329a715fd2fdc57 100644 (file)
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,2 +1,2 @@
 [install]
-prefix: /usr
+prefix: ~
index 8d8f7a84041f3776e851e22a94b8597a70dfc318..54c2593f2b257c7a0298a6aaac50780f3575bf3a 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,6 @@ import sys, glob, os
 from distutils.core import setup
 
 from stgit import version
-from stgit.run import Run
 
 def __version_to_list(version):
     """Convert a version string to a list of numbers or strings
@@ -28,7 +27,7 @@ def __check_min_version(min_ver, ver):
 def __check_python_version():
     """Check the minimum Python version
     """
-    pyver = '.'.join(str(n) for n in sys.version_info)
+    pyver = '.'.join(map(lambda x: str(x), sys.version_info))
     if not __check_min_version(version.python_min_ver, pyver):
         print >> sys.stderr, 'Python version %s or newer required. Found %s' \
               % (version.python_min_ver, pyver)
@@ -37,6 +36,7 @@ def __check_python_version():
 def __check_git_version():
     """Check the minimum GIT version
     """
+    from stgit.run import Run
     gitver = Run('git', '--version').output_one_line().split()[2]
     if not __check_min_version(version.git_min_ver, gitver):
         print >> sys.stderr, 'GIT version %s or newer required. Found %s' \
diff --git a/t/t2701-refresh-p.sh b/t/t2701-refresh-p.sh
new file mode 100755 (executable)
index 0000000..6fb7352
--- /dev/null
@@ -0,0 +1,46 @@
+#!/bin/sh
+
+test_description='Run "stg refresh -p"'
+
+. ./test-lib.sh
+
+# Ignore our own temp files.
+cat >> .git/info/exclude <<EOF
+expected*.txt
+files*.txt
+status*.txt
+EOF
+
+test_expect_success 'Initialize StGit stack' '
+    stg init &&
+    for i in 1 2; do
+        echo x > $i.txt &&
+        git add $i.txt &&
+        stg new p$i -m "Patch $i" &&
+        stg refresh
+    done
+'
+
+touch expected0.txt
+cat > expected1.txt <<EOF
+A 1.txt
+A new.txt
+EOF
+cat > expected2.txt <<EOF
+A 2.txt
+EOF
+test_expect_failure 'Add new file to non-top patch' '
+    stg status > status1.txt &&
+    test_cmp expected0.txt status1.txt &&
+    echo y > new.txt &&
+    git add new.txt &&
+    stg refresh -p p1 &&
+    stg status > status2.txt &&
+    test_cmp expected0.txt status2.txt &&
+    stg files p1 > files1.txt &&
+    test_cmp expected1.txt files1.txt &&
+    stg files p2 > files2.txt &&
+    test_cmp expected2.txt files2.txt
+'
+
+test_done