Skip to content

Commit

Permalink
Add copyright headers to files where missing
Browse files Browse the repository at this point in the history
For some files we cannot add comments,
so we put the header in a separate .license file
according to the REUSE specification.
  • Loading branch information
PhilippWendler committed May 22, 2020
1 parent 07adac8 commit f572844
Show file tree
Hide file tree
Showing 109 changed files with 866 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# This file is part of BenchExec, a framework for reliable benchmarking:
# https://github.com/sosy-lab/benchexec
#
# SPDX-FileCopyrightText: 2019-2020 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0

[run]
branch = True
parallel = True
Expand Down
7 changes: 7 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# This file is part of BenchExec, a framework for reliable benchmarking:
# https://github.com/sosy-lab/benchexec
#
# SPDX-FileCopyrightText: 2019-2020 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0

[flake8]
max-line-length = 88
ignore =
Expand Down
7 changes: 7 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# This file is part of BenchExec, a framework for reliable benchmarking:
# https://github.com/sosy-lab/benchexec
#
# SPDX-FileCopyrightText: 2019-2020 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0

# Exclude test files from project statistics
# cf. https://github.com/github/linguist#troubleshooting
benchexec/tablegenerator/test_integration/expected/** linguist-vendored
Expand Down
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# This file is part of BenchExec, a framework for reliable benchmarking:
# https://github.com/sosy-lab/benchexec
#
# SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0

*.pyc
*~
/build
Expand Down
7 changes: 7 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# This file is part of BenchExec, a framework for reliable benchmarking:
# https://github.com/sosy-lab/benchexec
#
# SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0

# To execute a job locally, install gitlab-runner (https://docs.gitlab.com/runner/install/)
# and run the following command:
# gitlab-runner exec docker --docker-privileged --docker-volumes /sys/fs/cgroup:/sys/fs/cgroup:rw --env CI_REGISTRY_IMAGE=registry.gitlab.com/sosy-lab/software/benchexec <<JOB_NAME>>
Expand Down
10 changes: 10 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>

<!--
This file is part of BenchExec, a framework for reliable benchmarking:
https://github.com/sosy-lab/benchexec
SPDX-FileCopyrightText: 2019-2020 Dirk Beyer <https://www.sosy-lab.org>
SPDX-License-Identifier: Apache-2.0
-->

<projectDescription>
<name>BenchExec</name>
<comment></comment>
Expand Down
8 changes: 8 additions & 0 deletions .travis-setup.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
#!/bin/sh

# This file is part of BenchExec, a framework for reliable benchmarking:
# https://github.com/sosy-lab/benchexec
#
# SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0

set -e

echo ------------------------
Expand Down
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# This file is part of BenchExec, a framework for reliable benchmarking:
# https://github.com/sosy-lab/benchexec
#
# SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0

language: python
sudo: required
dist: xenial
Expand Down
6 changes: 6 additions & 0 deletions .zenodo.json.license
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
This file is part of BenchExec, a framework for reliable benchmarking:
https://github.com/sosy-lab/benchexec

SPDX-FileCopyrightText: 2019-2020 Dirk Beyer <https://www.sosy-lab.org>

SPDX-License-Identifier: Apache-2.0
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
This file is part of BenchExec, a framework for reliable benchmarking:
https://github.com/sosy-lab/benchexec
SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
SPDX-License-Identifier: Apache-2.0
-->

# BenchExec Changelog

## BenchExec 2.6
Expand Down
7 changes: 7 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# This file is part of BenchExec, a framework for reliable benchmarking:
# https://github.com/sosy-lab/benchexec
#
# SPDX-FileCopyrightText: 2019-2020 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0

include *.md
include LICENSE
include benchexec/tablegenerator/template*
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
This file is part of BenchExec, a framework for reliable benchmarking:
https://github.com/sosy-lab/benchexec
SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
SPDX-License-Identifier: Apache-2.0
-->

# BenchExec
## A Framework for Reliable Benchmarking and Resource Measurement

Expand Down
7 changes: 7 additions & 0 deletions benchexec/tablegenerator/react-table/.env
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
# This file is part of BenchExec, a framework for reliable benchmarking:
# https://github.com/sosy-lab/benchexec
#
# SPDX-FileCopyrightText: 2019-2020 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0

EXTEND_ESLINT=true
7 changes: 7 additions & 0 deletions benchexec/tablegenerator/react-table/.env.production
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
# This file is part of BenchExec, a framework for reliable benchmarking:
# https://github.com/sosy-lab/benchexec
#
# SPDX-FileCopyrightText: 2019-2020 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0

GENERATE_SOURCEMAP=false
7 changes: 7 additions & 0 deletions benchexec/tablegenerator/react-table/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# This file is part of BenchExec, a framework for reliable benchmarking:
# https://github.com/sosy-lab/benchexec
#
# SPDX-FileCopyrightText: 2019-2020 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0

# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# generated files
Expand Down
7 changes: 7 additions & 0 deletions benchexec/tablegenerator/react-table/.lintignores
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# This file is part of BenchExec, a framework for reliable benchmarking:
# https://github.com/sosy-lab/benchexec
#
# SPDX-FileCopyrightText: 2019-2020 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0

build
dist
config
Expand Down
7 changes: 7 additions & 0 deletions benchexec/tablegenerator/react-table/.npmrc
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
# This file is part of BenchExec, a framework for reliable benchmarking:
# https://github.com/sosy-lab/benchexec
#
# SPDX-FileCopyrightText: 2019-2020 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0

engine-strict=true
9 changes: 9 additions & 0 deletions benchexec/tablegenerator/react-table/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
This file is part of BenchExec, a framework for reliable benchmarking:
https://github.com/sosy-lab/benchexec
SPDX-FileCopyrightText: 2019-2020 Dirk Beyer <https://www.sosy-lab.org>
SPDX-License-Identifier: Apache-2.0
-->

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

## Dependencies
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions benchexec/tablegenerator/react-table/package.json.license
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
This file is part of BenchExec, a framework for reliable benchmarking:
https://github.com/sosy-lab/benchexec

SPDX-FileCopyrightText: 2019-2020 Dirk Beyer <https://www.sosy-lab.org>

SPDX-License-Identifier: Apache-2.0
9 changes: 9 additions & 0 deletions benchexec/tablegenerator/react-table/public/index.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
This file is part of BenchExec, a framework for reliable benchmarking:
https://github.com/sosy-lab/benchexec
SPDX-FileCopyrightText: 2019-2020 Dirk Beyer <https://www.sosy-lab.org>
SPDX-License-Identifier: Apache-2.0
-->

<!DOCTYPE html>
<html lang="en">
<head>
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
# This file is part of BenchExec, a framework for reliable benchmarking:
# https://github.com/sosy-lab/benchexec
#
# SPDX-FileCopyrightText: 2019-2020 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0

Dummy log file 1
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# This file is part of BenchExec, a framework for reliable benchmarking:
# https://github.com/sosy-lab/benchexec
#
# SPDX-FileCopyrightText: 2019-2020 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0

# Required, string with format version of this file (currently only "1.0")
format_version: "1.0"

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
This file is part of BenchExec, a framework for reliable benchmarking:
https://github.com/sosy-lab/benchexec

SPDX-FileCopyrightText: 2019-2020 Dirk Beyer <https://www.sosy-lab.org>

SPDX-License-Identifier: Apache-2.0
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
This file is part of BenchExec, a framework for reliable benchmarking:
https://github.com/sosy-lab/benchexec
SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
SPDX-License-Identifier: Apache-2.0
-->

<table>
<result filename="results/test.2015-03-03_1613.results.predicateAnalysis.xml"/>
<result filename="results/test.2015-03-03_1613.results.valueAnalysis.xml"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
This file is part of BenchExec, a framework for reliable benchmarking:
https://github.com/sosy-lab/benchexec
SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
SPDX-License-Identifier: Apache-2.0
-->

<table>
<result filename="results/test.2015-03-03_1613.results.predicateAnalysis.xml"/>
<result filename="results/test.2015-03-03_1613.results.valueAnalysis.xml"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
This file is part of BenchExec, a framework for reliable benchmarking:
https://github.com/sosy-lab/benchexec
SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
SPDX-License-Identifier: Apache-2.0
-->

<table>
<result filename="results/test.*.results.predicateAnalysis.xml"/>
<result filename="results/test.*.results.valueAnalysis.xml"/>
Expand Down
9 changes: 9 additions & 0 deletions benchexec/tablegenerator/test_integration/multi-table.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
This file is part of BenchExec, a framework for reliable benchmarking:
https://github.com/sosy-lab/benchexec
SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
SPDX-License-Identifier: Apache-2.0
-->

<table>
<result filename="results/test.2015-03-03_1613.results.predicateAnalysis.xml"/>
<result filename="results/test.2015-03-03_1613.results.valueAnalysis.xml"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
This file is part of BenchExec, a framework for reliable benchmarking:
https://github.com/sosy-lab/benchexec
SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
SPDX-License-Identifier: Apache-2.0
-->

<table>
<result filename="results/test.2015-03-03_1613.results.predicateAnalysis.xml"/>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
This file is part of BenchExec, a framework for reliable benchmarking:
https://github.com/sosy-lab/benchexec
SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
SPDX-License-Identifier: Apache-2.0
-->

<table>
<result filename="results/test.2015-03-03_1613.results.predicateAnalysis-logfile-links.xml"/>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
This file is part of BenchExec, a framework for reliable benchmarking:
https://github.com/sosy-lab/benchexec
SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
SPDX-License-Identifier: Apache-2.0
-->

<table>
<result filename="results/test.2015-03-03_1613.results.predicateAnalysis.xml"/>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
This file is part of BenchExec, a framework for reliable benchmarking:
https://github.com/sosy-lab/benchexec
SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
SPDX-License-Identifier: Apache-2.0
-->

<table>
<result filename="results/test.2015-03-03_1613.results.predicateAnalysis.xml"/>

Expand Down
9 changes: 9 additions & 0 deletions benchexec/tablegenerator/test_integration/simple-table.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
This file is part of BenchExec, a framework for reliable benchmarking:
https://github.com/sosy-lab/benchexec
SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
SPDX-License-Identifier: Apache-2.0
-->

<table>
<result filename="results/test.2015-03-03_1613.results.predicateAnalysis.xml"/>
</table>
9 changes: 9 additions & 0 deletions benchexec/tablegenerator/test_integration/smt.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
This file is part of BenchExec, a framework for reliable benchmarking:
https://github.com/sosy-lab/benchexec
SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
SPDX-License-Identifier: Apache-2.0
-->

<table>
<result filename="results/mathsat.2015-05-27_1004.results.xml"/>
<result filename="results/smtinterpol.2015-05-27_1004.results.xml"/>
Expand Down
Loading

0 comments on commit f572844

Please sign in to comment.