Skip to content

Commit 9cded42

Browse files
authored
Merge pull request #68 from redhat-performance/compare_proper_file
Current validate works for some but not all. Missed a change.
2 parents 38881ca + 4d2fff6 commit 9cded42

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

validate_line

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,6 @@ header_processed=0
195195

196196
grep -q "Test general meta end" $results_file
197197
meta_head=$?
198-
echo meta_head $meta_head
199198
while IFS= read -r test_info
200199
do
201200
if [ $meta_head -eq 0 ]; then
@@ -272,7 +271,7 @@ done < "$results_file"
272271
# Create the compare file by pasting the base results (reg exp) against the tmp_results
273272
# file which is minus all the meta documentation.
274273
#
275-
paste $base_results_file $test_results > $compare_file
274+
paste $verification_base $test_results > $compare_file
276275
validate_lines $compare_file
277276
rm -f $compare_file $verification_base $verify_template $test_results
278277
if [[ $exit_rtc -ne 0 ]]; then

0 commit comments

Comments
 (0)