mirror of
https://github.com/square/okhttp.git
synced 2025-08-10 11:03:02 +03:00
The previous module structure was necessary because Maven wouldn't allow mockwebserver to depend on okhttp/src and for okhttp/test to depend on mockwebserver. With Gradle this constraint is lifted and we can fold everything into a single module. I'm in a rush to do this now because it's necessary for Kotlin 'internal' tests to be in the same module.
12 lines
275 B
Bash
Executable File
12 lines
275 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "$0" )" && pwd )"
|
|
cd "$SCRIPT_DIR"
|
|
|
|
if [ ! -f target/fuzzingserver-actual.txt ]; then
|
|
echo "File not found. Did you run the Autobahn test script?"
|
|
exit 1
|
|
fi
|
|
|
|
cp target/fuzzingserver-actual.txt fuzzingserver-expected.txt
|