From: Nick Porter Date: Tue, 2 Jan 2024 13:33:32 +0000 (+0000) Subject: Grouping edits is now done with transactions X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68a3f2f183f4e0ce273a51cf2866c0cd50a67da6;p=thirdparty%2Ffreeradius-server.git Grouping edits is now done with transactions --- diff --git a/src/tests/keywords/edit-abort.ignore b/src/tests/keywords/edit-abort.ignore deleted file mode 100644 index 6b26b4452da..00000000000 --- a/src/tests/keywords/edit-abort.ignore +++ /dev/null @@ -1,26 +0,0 @@ -# -# PRE: edit -# -update request { - &Tmp-Integer-0 := 4 - &Tmp-Integer-1 := 5 -} - -# -# First modification succeeds. The second modification fails, which -# also reverts the changes to the first one. -# -&Tmp-Integer-0 += 5 -&Tmp-Integer-1 -= 16 # Run-time underflow! - -# -# The various edits above should have been reverted. -# -if !(&Tmp-Integer-0 == 4) { - test_fail -} - -if !(&Tmp-Integer-1 == 5) { - test_fail -} -success