Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Remove obsolete fuzzing code
  • Loading branch information
Markoutte committed Apr 10, 2023
commit b0a6da0a9fcff775dc270d8ba66737ad213e4f5f
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