diff options
Diffstat (limited to 'NPTest.pm')
-rw-r--r-- | NPTest.pm | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -599,8 +599,8 @@ sub output { sub perf_output { my $self = shift; $_ = $self->{output}; - s/[^|]*\|//; - return $_; + /\|(.*)$/; + return $1 || ""; } sub testCmd { |