aboutsummaryrefslogtreecommitdiff
path: root/testsuite/runtest.main/pr42399.exp
blob: 1782231be111e002063b047692f8e565163b3797 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Copyright (C) 2020 Free Software Foundation, Inc.
#
# This file is part of DejaGnu.
#
# DejaGnu is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# DejaGnu is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with DejaGnu; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.

# This file is a regression test for PR42399, where timing variations can
# cause test names to be truncated under certain conditions.

# The bug was originally reported using a C test case, but GNU Awk is
# sufficiently fast for a simple Awk script to also trigger the bug.

# The bug was originally reported as only affecting long test names, but
# the underlying issue applies equally to shorter names, as long as the
# unit test program produces output faster than DejaGnu can read it.

runtest_setup_nested_testsuite

proc test_pr42399 {} {
    global RUNTEST

    foreach test_count {5 5000} {
	set result pass
	set failures [list]
	set want_num 1
	set cmd_args [list --local_init nested-init.exp --tool bug \
			    -a pr42399-sub.exp N=$test_count]
	verbose "Spawning $RUNTEST $cmd_args ..."
	eval [list spawn $RUNTEST] $cmd_args
	expect {
	    -re {PASS:[[:space:]]+([^\r\n]*)[\r\n]+} {
		if { [regexp {sample test ([0-9]+)} \
			  $expect_out(1,string) -> read_num] } {
		    if { $read_num != $want_num } { set result fail }
		} else { set result fail }
		incr want_num
		exp_continue
	    }
	    eof {
		$result "PR42399 test with $test_count inner tests"
	    }
	}
    }
}

test_pr42399

runtest_cleanup_nested_testsuite