Index: tools/release/test_scripts.py |
diff --git a/tools/release/test_scripts.py b/tools/release/test_scripts.py |
index 68d30cd60b4215969d45c53743e423c3fafa7d33..aeb9c20ab7cb1c2666fdec26700cba67bf79bef1 100644 |
--- a/tools/release/test_scripts.py |
+++ b/tools/release/test_scripts.py |
@@ -1115,8 +1115,9 @@ deps = { |
Cmd("git describe --tags bad_tag", ""), |
Cmd("git describe --tags hash_234", "3.22.4"), |
Cmd("git describe --tags hash_123", "3.22.3"), |
- Cmd("git log --format=%H abcd123455..hash_234", ""), |
- Cmd("git log --format=%H abcd123455..hash_123", ""), |
+ Cmd("git describe --tags abcd123455", "3.22.4"), |
+ Cmd("git describe --tags hash_234", "3.22.4"), |
+ Cmd("git describe --tags hash_123", "3.22.3"), |
]) |
result = auto_roll.AutoRoll(TEST_CONFIG, self).Run( |
@@ -1137,7 +1138,8 @@ deps = { |
Cmd("git describe --tags bad_tag", ""), |
Cmd("git describe --tags hash_234", "3.22.4"), |
Cmd("git describe --tags hash_123", "3.22.3"), |
- Cmd("git log --format=%H abcd123455..hash_234", "hash1\nhash2\n"), |
+ Cmd("git describe --tags abcd123455", "3.22.3.1"), |
+ Cmd("git describe --tags hash_234", "3.22.4"), |
]) |
result = auto_roll.AutoRoll(TEST_CONFIG, self).Run( |