# # patch "tests/t_at_sign.at" # from [c4d8959dc325415e89e9dfeb6682abd1459fc799] # to [b389ebe5349370531ef4e84019053f136aad6a62] # ======================================================================== --- tests/t_at_sign.at c4d8959dc325415e89e9dfeb6682abd1459fc799 +++ tests/t_at_sign.at b389ebe5349370531ef4e84019053f136aad6a62 @@ -8,32 +8,32 @@ # Check that --xargs works at all AT_DATA([at_test.input], [--help ]) -AT_CHECK(RAW_MONOTONE list --xargs=at_test.input, [], [expout], [ignore]) +AT_CHECK(RAW_MONOTONE list --xargs=at_test.input, [2], [expout], [ignore]) # The rest of the checks use the short form, -@ # Check that -@ works at all AT_DATA([at_test.input], [--help ]) -AT_CHECK(RAW_MONOTONE list -@ at_test.input, [], [expout], [ignore]) +AT_CHECK(RAW_MONOTONE list -@ at_test.input, [2], [expout], [ignore]) # Check that -@ works when injected in the middle of the arguments # (i.e. that it's prepended correctly) AT_DATA([at_test.input], [list ]) -AT_CHECK(RAW_MONOTONE -@ at_test.input --help, [], [expout], [ignore]) +AT_CHECK(RAW_MONOTONE -@ at_test.input --help, [2], [expout], [ignore]) # Check that -@ works when used more than once AT_DATA([at_test.input1], [list ]) AT_DATA([at_test.input2], [--help ]) -AT_CHECK(RAW_MONOTONE -@ at_test.input1 -@ at_test.input2, [], [expout], [ignore]) +AT_CHECK(RAW_MONOTONE -@ at_test.input1 -@ at_test.input2, [2], [expout], [ignore]) # Check that -@ works with an argument file with no content -AT_CHECK(RAW_MONOTONE list, [], [stdout], [ignore], [:], [:]) +AT_CHECK(RAW_MONOTONE list, [2], [stdout], [ignore], [:], [:]) mv stdout expout AT_DATA([at_test.input], []) -AT_CHECK(RAW_MONOTONE list -@ at_test.input, [], [expout], [ignore]) +AT_CHECK(RAW_MONOTONE list -@ at_test.input, [2], [expout], [ignore]) AT_CLEANUP