You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by bn...@apache.org on 2021/04/07 16:08:41 UTC

[trafficserver] branch 8.1.x updated: Updating to AuTest 1.10.0 (#7686)

This is an automated email from the ASF dual-hosted git repository.

bneradt pushed a commit to branch 8.1.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/8.1.x by this push:
     new 61da91d  Updating to AuTest 1.10.0 (#7686)
61da91d is described below

commit 61da91d4e49ba4c1de61c654cb6bcbec51458bd7
Author: Brian Neradt <br...@gmail.com>
AuthorDate: Wed Apr 7 11:08:30 2021 -0500

    Updating to AuTest 1.10.0 (#7686)
    
    This new release supports case-insensitive gold files. We intend to use
    this for HTTP/2 curl AuTest gold files which, depending upon the version
    of curl, may or may not lowercase field names.
    (cherry picked from commit 4c882701eac237614aea24485da4233a7aed99ce)
    
    Conflicts:
    	tests/Pipfile
    	tests/gold_tests/autest-site/init.cli.ext
---
 tests/Pipfile                             | 5 ++++-
 tests/gold_tests/autest-site/init.cli.ext | 2 +-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/tests/Pipfile b/tests/Pipfile
index 5586503..fdfb7e3 100644
--- a/tests/Pipfile
+++ b/tests/Pipfile
@@ -24,7 +24,10 @@ autopep8 = "*"
 pyflakes = "*"
 
 [packages]
-autest = "==1.8.0"
+
+# Keep init.cli.ext updated with this required autest version.
+autest = "==1.10.0"
+
 traffic-replay = "*" # this should install TRLib, MicroServer, MicroDNS, Traffic-Replay
 hyper = "*"
 dnslib = "*"
diff --git a/tests/gold_tests/autest-site/init.cli.ext b/tests/gold_tests/autest-site/init.cli.ext
index 28ed574..9e3ee8e 100644
--- a/tests/gold_tests/autest-site/init.cli.ext
+++ b/tests/gold_tests/autest-site/init.cli.ext
@@ -23,7 +23,7 @@ if sys.version_info < (3, 5, 0):
     host.WriteError(
         "You need python 3.5 or later to run these tests\n", show_stack=False)
 
-autest_version ="1.7.0"
+autest_version ="1.10.0"
 if AuTestVersion() < autest_version:
     host.WriteError(
         "Tests need AuTest version {ver} or better\n Please update AuTest:\n  pip install --upgrade autest\n".format(ver=autest_version), show_stack=False)