Skip to content
Snippets Groups Projects
  1. Jun 20, 2017
  2. Jul 12, 2016
    • Augie Fackler's avatar
      tests: relax "Connection refused" match · 280528245ecf
      Augie Fackler authored
      We already had the match relaxed on Windows, but on Google Compute
      Engine VMs I'm seeing "Network is unreachable" instead of "Connection
      refused". At this point, just give up and make sure we get an error back.
      280528245ecf
  3. Jun 08, 2015
  4. Oct 16, 2014
    • Mike Hommey's avatar
      tests: pull common http server setup out of individual tests · 10116463b0b1
      Mike Hommey authored
      There are currently two different tests using roughly the same code to
      create temporary scripts acting as HTTP servers. As there is going to
      be at least one more in an upcoming change, factor those out in a
      standalone dumbhttp.py script.
      10116463b0b1
  5. Aug 06, 2014
  6. Jun 19, 2012
    • Adrian Buehlmann's avatar
      test-bad-pull: partially adjust for Windows · 5d0538599428
      Adrian Buehlmann authored
      On a English Windows 7, the testcase fails with
      
        $ hg clone http://localhost:$HGPORT/ copy
        abort: error: No connection could be made because the target machine actively refused it
      
      Since the error message on non-English Windows installs are most likely
      different, we have to glob the entire error message away for Windows.
      5d0538599428
  7. Apr 22, 2012
  8. Apr 02, 2012
  9. Apr 01, 2012
  10. Mar 28, 2012
  11. Nov 16, 2011
  12. Nov 07, 2011
  13. Sep 22, 2010
    • Brodie Rao's avatar
      tests: add glob matching for unified tests · 97ffc68f71d3
      Brodie Rao authored
      This adds a " (glob)" marker that works like a simpler version of
      (re): "*" is converted to ".*", and "?" is converted to ".".
      
      Both special characters can be escaped using "\", and the backslash
      itself can be escaped as well.
      
      Other glob-style syntax, like "**", "[chars]", or "[!chars]", isn't
      supported.
      97ffc68f71d3
    • Brodie Rao's avatar
      tests: require regexes in unified tests to be marked with " (re)" · 02990e22150b
      Brodie Rao authored
      Consider this test:
      
        $ hg glog --template '{rev}:{node|short} "{desc}"\n'
        @  2:20c4f79fd7ac "3"
        |
        | o  1:38f24201dcab "2"
        |/
        o  0:2a18120dc1c9 "1"
      
      Because each line beginning with "|" can be compiled as a regular
      expression (equivalent to ".*|"), they will match any output.
      
      Similarly:
      
        $ echo foo
      
      
      The blank output line can be compiled as a regular expression and will
      also match any output.
      
      With this patch, none of the above output lines will be matched as
      regular expressions. A line must end in " (re)" in order to be matched
      as one.
      
      Lines are still matched literally first, so the following will pass:
      
        $ echo 'foo (re)'
        foo (re)
      02990e22150b
  14. Sep 21, 2010
  15. Sep 16, 2010
  16. Aug 14, 2010
  17. Dec 29, 2009
  18. Mar 29, 2009
  19. Feb 28, 2009
  20. Oct 05, 2007
  21. Apr 07, 2007
  22. Oct 18, 2006
  23. Oct 16, 2006
  24. Jul 06, 2006
  25. Jun 15, 2006
  26. Mar 15, 2006
  27. Feb 22, 2006
  28. Jul 30, 2005
  29. Jul 29, 2005
  30. Jul 15, 2005
    • mpm's avatar
      Merge with TAH · 574869103985
      mpm authored
      manifest hash: 197e0d1a0d7376a9eb72381330462f06490ab821
      574869103985
  31. Jul 14, 2005
    • Thomas Arendsen Hein's avatar
      Fixed tests. · 085a8145e151
      Thomas Arendsen Hein authored
      -----BEGIN PGP SIGNED MESSAGE-----
      Hash: SHA1
      
      Fixed tests.
      
      manifest hash: f6f36e6f95ea99efccc84dfa1d0af63d414a0eba
      -----BEGIN PGP SIGNATURE-----
      Version: GnuPG v1.4.1 (GNU/Linux)
      
      iD8DBQFC1hsCW7P1GVgWeRoRAtbyAJoDpbSygoutryu3P/miCpX2Q/LA8gCgiClo
      P+1ZpH0gycio/V4CKmj5Hlo=
      =JVBT
      -----END PGP SIGNATURE-----
      085a8145e151
  32. Jul 01, 2005
    • mpm's avatar
      Merge with TAH · 4fc63e22b1fe
      mpm authored
      -----BEGIN PGP SIGNED MESSAGE-----
      Hash: SHA1
      
      Merge with TAH
      
      manifest hash: 1742d7ba2093dc643b57e45167cb2d794212cbb9
      -----BEGIN PGP SIGNATURE-----
      Version: GnuPG v1.4.0 (GNU/Linux)
      
      iD8DBQFCxPCQywK+sNU5EO8RAkr0AJ9qut/31lCLQ/xY3FWaF3c21RhS7wCfW1eV
      3WexPDsJldMAr3V5vc9eowA=
      =pJYu
      -----END PGP SIGNATURE-----
      4fc63e22b1fe
    • Thomas Arendsen Hein's avatar
      Work-around failing tests/test-bad-pull with slow bg process. · 721bfca3a9dc
      Thomas Arendsen Hein authored
      -----BEGIN PGP SIGNED MESSAGE-----
      Hash: SHA1
      
      Work-around failing tests/test-bad-pull with slow bg process.
      Without the 'sleep 2' python dumb.py often appeared after hg clone.
      
      manifest hash: b32381ac46a7691f2a92595b650b2406853644c2
      -----BEGIN PGP SIGNATURE-----
      Version: GnuPG v1.4.1 (GNU/Linux)
      
      iD8DBQFCxOM+W7P1GVgWeRoRAjgTAJ9OqrikdK043Eiyyx9dG8DR1XZ7tgCggdmM
      AVYvAZO3P+WlaWDu3MaxEXY=
      =0XN5
      -----END PGP SIGNATURE-----
      721bfca3a9dc
    • Thomas Arendsen Hein's avatar
      Remove bashisms and use /bin/sh instead of /bin/bash. · 3d4d5f2aba9a
      Thomas Arendsen Hein authored
      -----BEGIN PGP SIGNED MESSAGE-----
      Hash: SHA1
      
      Remove bashisms and use /bin/sh instead of /bin/bash.
      
      manifest hash: 25560e04ff8ac33a6d8b82d2328b4e90578bee4c
      -----BEGIN PGP SIGNATURE-----
      Version: GnuPG v1.4.1 (GNU/Linux)
      
      iD8DBQFCxOEjW7P1GVgWeRoRAm9XAJ9IjlbMerPYEhKQQu7Ufcm6630cDwCfdXJ3
      865XH6YVMuCYNjf3eibwQaM=
      =r3gh
      -----END PGP SIGNATURE-----
      3d4d5f2aba9a
  33. Jun 28, 2005
    • mpm's avatar
      Fix troubles with clone and exception handling · c6a2e41c8c60
      mpm authored
      -----BEGIN PGP SIGNED MESSAGE-----
      Hash: SHA1
      
      Fix troubles with clone and exception handling
      
      Clone deletes its directory on failure 
      
      This was deleting the lockfile out from under the lock object before
      it got destroyed
      
      This patch shuts lock up and makes the cleanup code for clone a little
      cleaner.
      
      manifest hash: f666fddcf6f3a905020a091f5e9fd2cb5d806cdd
      -----BEGIN PGP SIGNATURE-----
      Version: GnuPG v1.4.0 (GNU/Linux)
      
      iD8DBQFCwSGOywK+sNU5EO8RAkx2AKCIxPczl9YWnuUM+bMQnpVr8kv6uQCeNWld
      SUxSB99PGJHhq1LWFaSJJNw=
      =Frk/
      -----END PGP SIGNATURE-----
      c6a2e41c8c60
    • mpm's avatar
      Pull from TAH · e94cebc60d96
      mpm authored
      -----BEGIN PGP SIGNED MESSAGE-----
      Hash: SHA1
      
      Pull from TAH
      
      manifest hash: 08b55e07198b8a4272753895fe3727d9f52ebb75
      -----BEGIN PGP SIGNATURE-----
      Version: GnuPG v1.4.0 (GNU/Linux)
      
      iD8DBQFCwO5YywK+sNU5EO8RArUtAJ9gsYYNbZH22COOz9B7ppwgCDxM8ACfYWcl
      n9Dim3Z7qepGUXvRDEeFZ9c=
      =JMQx
      -----END PGP SIGNATURE-----
      e94cebc60d96
  34. Jun 27, 2005
    • Thomas Arendsen Hein's avatar
      Use "kill $!" to kill running background processes. · 9bd468e36de3
      Thomas Arendsen Hein authored
      -----BEGIN PGP SIGNED MESSAGE-----
      Hash: SHA1
      
      Use "kill $!" to kill running background processes.
      
      manifest hash: 94563ef45ac0c8d15c9c827430f3d87380946434
      -----BEGIN PGP SIGNATURE-----
      Version: GnuPG v1.4.1 (GNU/Linux)
      
      iD8DBQFCv5QNW7P1GVgWeRoRAm+1AJwMopIWkvc/eG21mm/gbTrC9sCvhACePQl/
      VOPdJKQxutQTCdAqA8iMzck=
      =7ejv
      -----END PGP SIGNATURE-----
      9bd468e36de3
Loading