]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Grouping edits is now done with transactions
authorNick Porter <nick@portercomputing.co.uk>
Tue, 2 Jan 2024 13:33:32 +0000 (13:33 +0000)
committerNick Porter <nick@portercomputing.co.uk>
Wed, 3 Jan 2024 10:28:05 +0000 (10:28 +0000)
src/tests/keywords/edit-abort.ignore [deleted file]

diff --git a/src/tests/keywords/edit-abort.ignore b/src/tests/keywords/edit-abort.ignore
deleted file mode 100644 (file)
index 6b26b44..0000000
+++ /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