├── .github └── workflows │ └── build_and_test.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── benchmarks ├── ali_tianchi_code_generation.toml ├── autosar.toml ├── benchmarks_game.toml ├── cisq.toml ├── clojure-benchmarks.toml ├── clojure_benchmarks.toml ├── codexglue_c++.toml ├── codexglue_c.toml ├── codexglue_go.toml ├── codexglue_java.toml ├── codexglue_javascript.toml ├── codexglue_php.toml ├── codexglue_python.toml ├── codexglue_ruby.toml ├── concode.toml ├── cwe_mitre.toml ├── dbench_java.toml ├── diktat_coding_style.toml ├── geekbench.toml ├── growing_bugs_java.toml ├── iso_26262.toml ├── iso_iec_17961_c.toml ├── iso_iec_5055.toml ├── jpl_c.toml ├── jsf_av_c++.toml ├── juliet_standalone_c#.toml ├── juliet_standalone_c++.toml ├── juliet_standalone_java.toml ├── kotlinx_benchmark.toml ├── misra_c++.toml ├── misra_c.toml ├── owasp_top_ten.toml ├── pci_dss.toml ├── performancepaper.toml ├── sei_cert_c++.toml ├── sei_cert_c.toml ├── sei_cert_java.toml ├── sei_cert_perl.toml ├── spec_c_c++.toml └── spec_java.toml ├── ci ├── build.gradle.kts └── src │ └── test │ └── kotlin │ └── com │ └── saveourtool │ └── test │ ├── BenchmarkInfo.kt │ ├── CategoryEnum.kt │ ├── LicensesList.kt │ └── Validate.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.github/workflows/build_and_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/.github/workflows/build_and_test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/ali_tianchi_code_generation.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/ali_tianchi_code_generation.toml -------------------------------------------------------------------------------- /benchmarks/autosar.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/autosar.toml -------------------------------------------------------------------------------- /benchmarks/benchmarks_game.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/benchmarks_game.toml -------------------------------------------------------------------------------- /benchmarks/cisq.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/cisq.toml -------------------------------------------------------------------------------- /benchmarks/clojure-benchmarks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/clojure-benchmarks.toml -------------------------------------------------------------------------------- /benchmarks/clojure_benchmarks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/clojure_benchmarks.toml -------------------------------------------------------------------------------- /benchmarks/codexglue_c++.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/codexglue_c++.toml -------------------------------------------------------------------------------- /benchmarks/codexglue_c.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/codexglue_c.toml -------------------------------------------------------------------------------- /benchmarks/codexglue_go.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/codexglue_go.toml -------------------------------------------------------------------------------- /benchmarks/codexglue_java.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/codexglue_java.toml -------------------------------------------------------------------------------- /benchmarks/codexglue_javascript.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/codexglue_javascript.toml -------------------------------------------------------------------------------- /benchmarks/codexglue_php.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/codexglue_php.toml -------------------------------------------------------------------------------- /benchmarks/codexglue_python.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/codexglue_python.toml -------------------------------------------------------------------------------- /benchmarks/codexglue_ruby.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/codexglue_ruby.toml -------------------------------------------------------------------------------- /benchmarks/concode.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/concode.toml -------------------------------------------------------------------------------- /benchmarks/cwe_mitre.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/cwe_mitre.toml -------------------------------------------------------------------------------- /benchmarks/dbench_java.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/dbench_java.toml -------------------------------------------------------------------------------- /benchmarks/diktat_coding_style.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/diktat_coding_style.toml -------------------------------------------------------------------------------- /benchmarks/geekbench.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/geekbench.toml -------------------------------------------------------------------------------- /benchmarks/growing_bugs_java.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/growing_bugs_java.toml -------------------------------------------------------------------------------- /benchmarks/iso_26262.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/iso_26262.toml -------------------------------------------------------------------------------- /benchmarks/iso_iec_17961_c.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/iso_iec_17961_c.toml -------------------------------------------------------------------------------- /benchmarks/iso_iec_5055.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/iso_iec_5055.toml -------------------------------------------------------------------------------- /benchmarks/jpl_c.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/jpl_c.toml -------------------------------------------------------------------------------- /benchmarks/jsf_av_c++.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/jsf_av_c++.toml -------------------------------------------------------------------------------- /benchmarks/juliet_standalone_c#.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/juliet_standalone_c#.toml -------------------------------------------------------------------------------- /benchmarks/juliet_standalone_c++.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/juliet_standalone_c++.toml -------------------------------------------------------------------------------- /benchmarks/juliet_standalone_java.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/juliet_standalone_java.toml -------------------------------------------------------------------------------- /benchmarks/kotlinx_benchmark.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/kotlinx_benchmark.toml -------------------------------------------------------------------------------- /benchmarks/misra_c++.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/misra_c++.toml -------------------------------------------------------------------------------- /benchmarks/misra_c.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/misra_c.toml -------------------------------------------------------------------------------- /benchmarks/owasp_top_ten.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/owasp_top_ten.toml -------------------------------------------------------------------------------- /benchmarks/pci_dss.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/pci_dss.toml -------------------------------------------------------------------------------- /benchmarks/performancepaper.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/performancepaper.toml -------------------------------------------------------------------------------- /benchmarks/sei_cert_c++.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/sei_cert_c++.toml -------------------------------------------------------------------------------- /benchmarks/sei_cert_c.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/sei_cert_c.toml -------------------------------------------------------------------------------- /benchmarks/sei_cert_java.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/sei_cert_java.toml -------------------------------------------------------------------------------- /benchmarks/sei_cert_perl.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/sei_cert_perl.toml -------------------------------------------------------------------------------- /benchmarks/spec_c_c++.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/spec_c_c++.toml -------------------------------------------------------------------------------- /benchmarks/spec_java.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/benchmarks/spec_java.toml -------------------------------------------------------------------------------- /ci/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/ci/build.gradle.kts -------------------------------------------------------------------------------- /ci/src/test/kotlin/com/saveourtool/test/BenchmarkInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/ci/src/test/kotlin/com/saveourtool/test/BenchmarkInfo.kt -------------------------------------------------------------------------------- /ci/src/test/kotlin/com/saveourtool/test/CategoryEnum.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/ci/src/test/kotlin/com/saveourtool/test/CategoryEnum.kt -------------------------------------------------------------------------------- /ci/src/test/kotlin/com/saveourtool/test/LicensesList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/ci/src/test/kotlin/com/saveourtool/test/LicensesList.kt -------------------------------------------------------------------------------- /ci/src/test/kotlin/com/saveourtool/test/Validate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/ci/src/test/kotlin/com/saveourtool/test/Validate.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saveourtool/awesome-benchmarks/HEAD/settings.gradle --------------------------------------------------------------------------------