aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/release/relnotes_test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/release/relnotes_test.sh')
-rwxr-xr-xscripts/release/relnotes_test.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/release/relnotes_test.sh b/scripts/release/relnotes_test.sh
index a3c8cebf6e..66adf700e5 100755
--- a/scripts/release/relnotes_test.sh
+++ b/scripts/release/relnotes_test.sh
@@ -239,4 +239,16 @@ function test_extract_release_note_for_post_copybara_commits() {
assert_equals "${expected}" "${actual}"
}
+function test_commit_list_no_rollback() {
+ git checkout -q 2ea4fa26281175c316651ec50784b820a9f409cf
+ local expected='7c672ac643dd59bf4b3e284c6ad019c54545492f
+0257c29f496719bb8414d012334155de6bbefa11
+a9c46e5907be66248b6218ae70e0a1d999c696d5
+78927792c77a6468607e215034c22b0641553f77
+8882192897fa3453d51fe907d19f948215a581af
+2ea4fa26281175c316651ec50784b820a9f409cf'
+ local actual="$(get_release_notes_commits 7c605cf6ea9755a06e5abb16a631faac8ebe2937)"
+ assert_equals "${expected}" "${actual}"
+}
+
run_suite "Release notes generation tests"