rebase --root: fix amending root commit messages
[git.git] / t / t0009-prio-queue.sh
blobe56dfce6680298c133bc2b2de12d9492fda66b7a
1 #!/bin/sh
3 test_description='basic tests for priority queue implementation'
4 . ./test-lib.sh
6 cat >expect <<'EOF'
18 EOF
19 test_expect_success 'basic ordering' '
20 test-tool prio-queue 2 6 3 10 9 5 7 4 5 8 1 dump >actual &&
21 test_cmp expect actual
24 cat >expect <<'EOF'
31 EOF
32 test_expect_success 'mixed put and get' '
33 test-tool prio-queue 6 2 4 get 5 3 get get 1 dump >actual &&
34 test_cmp expect actual
37 cat >expect <<'EOF'
40 NULL
43 NULL
44 EOF
45 test_expect_success 'notice empty queue' '
46 test-tool prio-queue 1 2 get get get 1 2 get get get >actual &&
47 test_cmp expect actual
50 test_done