Skip to content

Commit 25806af

Browse files
randallmasaori335
authored andcommitted
Removes the remaining references to TSQA
1 parent c07474d commit 25806af

4 files changed

Lines changed: 6 additions & 8 deletions

File tree

doc/developer-guide/testing/blackbox-testing.en.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ for functional testing. The current layout is:
2626

2727
::
2828

29-
gold_tests/ - contains all the TSQA v4 based tests that run on the Reusable Gold Testing System (AuTest)
29+
gold_tests/ - contains all the tests that run on the Reusable Gold Testing System (AuTest)
3030
tools/ - contains programs used to help with testing.
3131

3232
Scripts

example/plugins/c-api/intercept/intercept.cc

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/** @file
22
3-
an example hello world plugin
3+
an example intercept plugin
44
55
@section license License
66
@@ -40,8 +40,7 @@
4040
// This plugin intercepts all cache misses and proxies them to a separate server
4141
// that is assumed to be running on localhost:60000. The plugin does no HTTP
4242
// processing at all, it simply shuffles data until the client closes the
43-
// request. The TSQA test test-server-intercept exercises this plugin. You can
44-
// enable extensive logging with the "intercept" diagnostic tag.
43+
// request. You can enable extensive logging with the "intercept" diagnostic tag.
4544

4645
#define PLUGIN_NAME "intercept"
4746
#define PORT 60000
@@ -552,6 +551,6 @@ TSPluginInit(int /* argc */, const char * /* argv */[])
552551
InterceptHook = InterceptContCreate(InterceptInterceptionHook, nullptr, nullptr);
553552

554553
// Wait until after the cache lookup to decide whether to
555-
// intercept a request. For cache hits we will never intercept.
554+
// intercept a request. For cache hits, we will never intercept.
556555
TSHttpHookAdd(TS_HTTP_CACHE_LOOKUP_COMPLETE_HOOK, TxnHook);
557556
}

src/traffic_layout/info.cc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@
4141
#include <brotli/encode.h>
4242
#endif
4343

44-
// Produce output about compile time features, useful for checking how things were built, as well
45-
// as for our TSQA test harness.
44+
// Produce output about compile time features, useful for checking how things were built
4645
static void
4746
print_feature(std::string_view name, int value, bool json, bool last = false)
4847
{

tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This directory contains different tests for Apache Trafficserver. It is recommen
66
## Layout
77
The current layout is:
88

9-
**gold_tests/** - contains all the TSQA v4 based tests that run on the Reusable Gold Testing System (AuTest)
9+
**gold_tests/** - contains all the tests that run on the Reusable Gold Testing System (AuTest)
1010

1111
**tools/** - contains programs used to help with testing.
1212

0 commit comments

Comments
 (0)