tests/test-glog.t
changeset 33747 24849d53697d
parent 33542 b11e8c67fb0f
child 33794 6c1a9fd8361b
equal deleted inserted replaced
33746:27fb986e54d0 33747:24849d53697d
  1631         ('string', 'x:e'))))
  1631         ('string', 'x:e'))))
  1632 
  1632 
  1633 Test glob expansion of pats
  1633 Test glob expansion of pats
  1634 
  1634 
  1635   $ expandglobs=`$PYTHON -c "import mercurial.util; \
  1635   $ expandglobs=`$PYTHON -c "import mercurial.util; \
  1636   >   print mercurial.util.expandglobs and 'true' or 'false'"`
  1636   >   print(mercurial.util.expandglobs and 'true' or 'false')"`
  1637   $ if [ $expandglobs = "true" ]; then
  1637   $ if [ $expandglobs = "true" ]; then
  1638   >    testlog 'a*';
  1638   >    testlog 'a*';
  1639   > else
  1639   > else
  1640   >    testlog a*;
  1640   >    testlog a*;
  1641   > fi;
  1641   > fi;