Skip to content

Commit 81897ba

Browse files
committed
Add LGPL copyright headers to JDWP Python test files
1 parent 4a13c3b commit 81897ba

8 files changed

Lines changed: 136 additions & 0 deletions

tests/jdwp/conftest.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
#
2+
# Copyright (C) 2003-2026 JNode.org
3+
#
4+
# This library is free software; you can redistribute it and/or modify it
5+
# under the terms of the GNU Lesser General Public License as published
6+
# by the Free Software Foundation; either version 2.1 of the License, or
7+
# (at your option) any later version.
8+
#
9+
# This library is distributed in the hope that it will be useful, but
10+
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11+
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
12+
# License for more details.
13+
#
14+
# You should have received a copy of the GNU Lesser General Public License
15+
# along with this library; If not, write to the Free Software Foundation, Inc.,
16+
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17+
#
118
"""
219
conftest.py - Shared fixtures for JDWP integration tests.
320

tests/jdwp/test_class_commands.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
#
2+
# Copyright (C) 2003-2026 JNode.org
3+
#
4+
# This library is free software; you can redistribute it and/or modify it
5+
# under the terms of the GNU Lesser General Public License as published
6+
# by the Free Software Foundation; either version 2.1 of the License, or
7+
# (at your option) any later version.
8+
#
9+
# This library is distributed in the hope that it will be useful, but
10+
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11+
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
12+
# License for more details.
13+
#
14+
# You should have received a copy of the GNU Lesser General Public License
15+
# along with this library; If not, write to the Free Software Foundation, Inc.,
16+
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17+
#
118
"""
219
test_class_commands.py - Tests for jdb class-related commands.
320

tests/jdwp/test_field_commands.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
#
2+
# Copyright (C) 2003-2026 JNode.org
3+
#
4+
# This library is free software; you can redistribute it and/or modify it
5+
# under the terms of the GNU Lesser General Public License as published
6+
# by the Free Software Foundation; either version 2.1 of the License, or
7+
# (at your option) any later version.
8+
#
9+
# This library is distributed in the hope that it will be useful, but
10+
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11+
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
12+
# License for more details.
13+
#
14+
# You should have received a copy of the GNU Lesser General Public License
15+
# along with this library; If not, write to the Free Software Foundation, Inc.,
16+
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17+
#
118
"""
219
test_field_commands.py - Tests for jdb field access commands.
320

tests/jdwp/test_method_invocation.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
#
2+
# Copyright (C) 2003-2026 JNode.org
3+
#
4+
# This library is free software; you can redistribute it and/or modify it
5+
# under the terms of the GNU Lesser General Public License as published
6+
# by the Free Software Foundation; either version 2.1 of the License, or
7+
# (at your option) any later version.
8+
#
9+
# This library is distributed in the hope that it will be useful, but
10+
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11+
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
12+
# License for more details.
13+
#
14+
# You should have received a copy of the GNU Lesser General Public License
15+
# along with this library; If not, write to the Free Software Foundation, Inc.,
16+
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17+
#
118
"""
219
test_method_invocation.py - Tests for JDWP method invocation fixes.
320

tests/jdwp/test_stack_commands.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
#
2+
# Copyright (C) 2003-2026 JNode.org
3+
#
4+
# This library is free software; you can redistribute it and/or modify it
5+
# under the terms of the GNU Lesser General Public License as published
6+
# by the Free Software Foundation; either version 2.1 of the License, or
7+
# (at your option) any later version.
8+
#
9+
# This library is distributed in the hope that it will be useful, but
10+
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11+
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
12+
# License for more details.
13+
#
14+
# You should have received a copy of the GNU Lesser General Public License
15+
# along with this library; If not, write to the Free Software Foundation, Inc.,
16+
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17+
#
118
"""
219
test_stack_commands.py - Tests for jdb stack frame commands.
320

tests/jdwp/test_thread_commands.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
#
2+
# Copyright (C) 2003-2026 JNode.org
3+
#
4+
# This library is free software; you can redistribute it and/or modify it
5+
# under the terms of the GNU Lesser General Public License as published
6+
# by the Free Software Foundation; either version 2.1 of the License, or
7+
# (at your option) any later version.
8+
#
9+
# This library is distributed in the hope that it will be useful, but
10+
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11+
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
12+
# License for more details.
13+
#
14+
# You should have received a copy of the GNU Lesser General Public License
15+
# along with this library; If not, write to the Free Software Foundation, Inc.,
16+
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17+
#
118
"""
219
test_thread_commands.py - Tests for jdb thread-related commands.
320

tests/jdwp/test_unsupported_commands.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
#
2+
# Copyright (C) 2003-2026 JNode.org
3+
#
4+
# This library is free software; you can redistribute it and/or modify it
5+
# under the terms of the GNU Lesser General Public License as published
6+
# by the Free Software Foundation; either version 2.1 of the License, or
7+
# (at your option) any later version.
8+
#
9+
# This library is distributed in the hope that it will be useful, but
10+
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11+
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
12+
# License for more details.
13+
#
14+
# You should have received a copy of the GNU Lesser General Public License
15+
# along with this library; If not, write to the Free Software Foundation, Inc.,
16+
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17+
#
118
"""
219
test_unsupported_commands.py - Tests for jdb commands that are NOT supported.
320

tests/jdwp/test_vm_commands.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
#
2+
# Copyright (C) 2003-2026 JNode.org
3+
#
4+
# This library is free software; you can redistribute it and/or modify it
5+
# under the terms of the GNU Lesser General Public License as published
6+
# by the Free Software Foundation; either version 2.1 of the License, or
7+
# (at your option) any later version.
8+
#
9+
# This library is distributed in the hope that it will be useful, but
10+
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11+
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
12+
# License for more details.
13+
#
14+
# You should have received a copy of the GNU Lesser General Public License
15+
# along with this library; If not, write to the Free Software Foundation, Inc.,
16+
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17+
#
118
"""
219
test_vm_commands.py - Tests for jdb VM-level commands.
320

0 commit comments

Comments
 (0)