Skip to content

Commit

Permalink
add copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
rmbarnett-rice committed Aug 8, 2017
1 parent f29f888 commit 9f5d5f3
Show file tree
Hide file tree
Showing 39 changed files with 633 additions and 9 deletions.
16 changes: 16 additions & 0 deletions src/test/resources/driver/10f.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2017 Rice University
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// irrelevant loop
import java.io.BufferedReader;
import java.io.InputStreamReader;
Expand Down
16 changes: 16 additions & 0 deletions src/test/resources/driver/11f.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2017 Rice University
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// for loop with empty body
import java.io.BufferedReader;
import java.io.InputStreamReader;
Expand Down
16 changes: 16 additions & 0 deletions src/test/resources/driver/12f.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2017 Rice University
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// for loop with empty body and condition
import java.io.BufferedReader;
import java.io.InputStreamReader;
Expand Down
16 changes: 16 additions & 0 deletions src/test/resources/driver/13f.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2017 Rice University
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// do-while loop
import java.io.BufferedReader;
import java.io.InputStreamReader;
Expand Down
16 changes: 16 additions & 0 deletions src/test/resources/driver/14f.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2017 Rice University
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// nested loop
import java.io.BufferedReader;
import java.io.InputStreamReader;
Expand Down
16 changes: 16 additions & 0 deletions src/test/resources/driver/15f.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2017 Rice University
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// try-catch nested with loop
import java.io.BufferedReader;
import java.io.InputStreamReader;
Expand Down
16 changes: 16 additions & 0 deletions src/test/resources/driver/16f.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2017 Rice University
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// nested try-catch
import java.io.BufferedReader;
import java.io.InputStreamReader;
Expand Down
16 changes: 16 additions & 0 deletions src/test/resources/driver/17f.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2017 Rice University
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// try-catch with empty catch
import java.io.BufferedReader;
import java.io.InputStreamReader;
Expand Down
16 changes: 16 additions & 0 deletions src/test/resources/driver/18f.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2017 Rice University
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// try-catch with empty try
import java.io.BufferedReader;
import java.io.InputStreamReader;
Expand Down
16 changes: 16 additions & 0 deletions src/test/resources/driver/19f.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2017 Rice University
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// branch with no else
import java.io.BufferedReader;
import java.io.InputStreamReader;
Expand Down
16 changes: 16 additions & 0 deletions src/test/resources/driver/1f.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2017 Rice University
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// empty program
import java.io.BufferedReader;
import java.io.InputStreamReader;
Expand Down
16 changes: 16 additions & 0 deletions src/test/resources/driver/20f.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2017 Rice University
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// branch with else
import java.io.BufferedReader;
import java.io.InputStreamReader;
Expand Down
16 changes: 16 additions & 0 deletions src/test/resources/driver/21f.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2017 Rice University
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// branch with two conditions
import java.io.BufferedReader;
import java.io.InputStreamReader;
Expand Down
16 changes: 16 additions & 0 deletions src/test/resources/driver/22f.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2017 Rice University
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// nested branch with empty else
import java.io.BufferedReader;
import java.io.InputStreamReader;
Expand Down
16 changes: 16 additions & 0 deletions src/test/resources/driver/23f.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2017 Rice University
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// nested branch
import java.io.BufferedReader;
import java.io.InputStreamReader;
Expand Down
16 changes: 16 additions & 0 deletions src/test/resources/driver/24f.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2017 Rice University
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// nested branch and loop
import java.io.BufferedReader;
import java.io.InputStreamReader;
Expand Down
16 changes: 16 additions & 0 deletions src/test/resources/driver/25f.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2017 Rice University
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// nested branch, try-catch and loop
import java.io.BufferedReader;
import java.io.InputStreamReader;
Expand Down
16 changes: 16 additions & 0 deletions src/test/resources/driver/26f.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2017 Rice University
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// internal method call
import java.io.BufferedReader;
import java.io.InputStreamReader;
Expand Down
16 changes: 16 additions & 0 deletions src/test/resources/driver/27f.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2017 Rice University
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// android
import android.bluetooth.BluetoothSocket;

Expand Down
Loading

0 comments on commit 9f5d5f3

Please sign in to comment.