From: John Darrington Date: Thu, 19 Apr 2012 19:14:54 +0000 (+0200) Subject: DO IF test: Correct expected outcome X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp;a=commitdiff_plain;h=441a0be4dad876e64150d0e4694263caffc37002 DO IF test: Correct expected outcome Commit 27bd188495ec1a6085354b10545daba47771b517 added a test for an error condition in DO IF, but appears to contain some cut and paste errors. This change corrects them. --- diff --git a/tests/language/control/do-if.at b/tests/language/control/do-if.at index 9f1457cce7..2136c9b566 100644 --- a/tests/language/control/do-if.at +++ b/tests/language/control/do-if.at @@ -54,7 +54,7 @@ AT_DATA([do-if.sps], [dnl DATA LIST LIST NOTABLE/a b c. END IF. ]) -AT_CHECK([pspp -O format=csv do-if.sps], [0], [dnl -do-if.pspp:2: error: END IF: This command cannot appear outside DO IF...END IF. +AT_CHECK([pspp -O format=csv do-if.sps], [1], [dnl +do-if.sps:2: error: END IF: This command cannot appear outside DO IF...END IF. ]) AT_CLEANUP