sapling/tests/test-hgsql-profiler.t
Mark Thomas 742cd624f7 hgsql: integrate with hg-crew
Summary:
Move hgsql into the hgext directory, and the tests to tests/test-hgsql-*.

Update the tests to refer to the new places for things.

Test Plan: Run the hgsql tests and make sure they pass.

Reviewers: #sourcecontrol

Differential Revision: https://phabricator.intern.facebook.com/D6660499

Tasks: T24908724
2018-01-04 07:22:19 -08:00

44 lines
844 B
Raku

$ . "$TESTDIR/hgsql/library.sh"
# Populate the db with an initial commit
$ initclient client
$ cd client
$ echo x > x
$ hg commit -qAm x
$ cd ..
$ initserver master masterrepo
# Test with stat profiler
$ cat >> master/.hg/hgrc <<EOF
> [hgsql]
> profiler=stat
> profileoutput=$TESTTMP/
> EOF
$ cd client
$ hg push -q ssh://user@dummy/master
$ cat $TESTTMP/hgsql-profile* | grep "Total Elapsed Time"
Total Elapsed Time: * (glob)
$ rm -f $TESTTMP/hgsql-profile*
$ cd ..
# Test with ls profiler
$ cat >> master/.hg/hgrc <<EOF
> [hgsql]
> profiler=ls
> profileoutput=$TESTTMP/
> EOF
$ cd client
$ echo x >> x
$ hg commit -qAm x
$ hg push -q ../master
$ cat $TESTTMP/hgsql-profile* | grep "Total Elapsed Time"
Total Elapsed Time: * (glob)
$ rm -f $TESTTMP/hgsql-profile*
$ cd ..