blob: f4a03473b18a6d5208b6fd0a39b609dc46fedce2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
proc setup {} {
save_env
}
proc teardown {} {
assert_env_unmodified
}
setup
# Adding a print job is successful?
if {[assert_exec {lp -H hold $::srcdir/fixtures/shared/default/foo} job "" "untested"]} {
# Yes, adding a print-job is successful;
# Retrieve job-id, so we can cancel the job after the test
set job_id [lindex [split $job] 3]
# Retrieve list of all current print jobs
assert_exec {lpstat | cut -d\040 -f1} jobs
# Completion should show all print jobs
assert_complete $jobs "cancel "
# Remove/cancel the test print job
assert_exec "cancel $job_id"
}
sync_after_int
teardown
|