}
}
-plan(3);
+plan(4);
sub rc {
open RC, ">", ".perldb" or die $!;
like($output, qr/Undefined symbols 0/, 'there are no undefined values in the symbol table');
}
+{
+ local $ENV{PERLDB_OPTS} = "ReadLine=0 NonStop=1";
+ my $output = runperl(switches => [ '-dt' ], progfile => '../lib/perl5db/t/symbol-table-bug');
+ like($output, qr/Undefined symbols 0/, 'there are no undefined values in the symbol table when running with thread support');
+}
+
# clean up.
END {