Skip to content

Remove obsolete fuzzing code #1896

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-run-tests-from-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ jobs:
# The option forces to execute all jobs even though some of them have failed.
fail-fast: false
matrix:
project: [utbot-core, utbot-fuzzers, utbot-gradle, utbot-junit-contest, utbot-sample]
project: [utbot-core, utbot-java-fuzzing, utbot-gradle, utbot-junit-contest, utbot-sample]
runs-on: ubuntu-20.04
container:
image: unittestbot/java-env:java17-zulu-jdk-gradle7.6.1-kotlinc1.8.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-chosen-tests-from-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
- utbot-core
- utbot-framework-api
- utbot-framework
- utbot-fuzzers
- utbot-java-fuzzing
- utbot-gradle
- utbot-instrumentation-tests
- utbot-instrumentation
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ configure(
project(":utbot-core"),
project(":utbot-framework"),
project(":utbot-framework-api"),
project(":utbot-fuzzers"),
project(":utbot-java-fuzzing"),
project(":utbot-instrumentation"),
project(":utbot-rd"),
project(":utbot-summary")
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ include("utbot-framework")
include("utbot-framework-api")
include("utbot-intellij")
include("utbot-sample")
include("utbot-fuzzers")
include("utbot-java-fuzzing")
include("utbot-fuzzing")
include("utbot-junit-contest")
include("utbot-analytics")
Expand Down
2 changes: 1 addition & 1 deletion utbot-framework-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies {
api project(':utbot-framework-api')
testImplementation project(':utbot-testing')

api project(':utbot-fuzzers')
api project(':utbot-java-fuzzing')
api project(':utbot-instrumentation')
api project(':utbot-summary')

Expand Down
2 changes: 1 addition & 1 deletion utbot-framework/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies {

api project(':utbot-fuzzers')
api project(':utbot-java-fuzzing')
api project(':utbot-instrumentation')
api project(':utbot-summary')
api project(':utbot-framework-api')
Expand Down

This file was deleted.

206 changes: 0 additions & 206 deletions utbot-fuzzers/readme.md

This file was deleted.

15 changes: 0 additions & 15 deletions utbot-fuzzers/src/main/kotlin/org/utbot/fuzzer/FuzzedParameter.kt

This file was deleted.

Loading