Skip to content
This repository has been archived by the owner on Sep 13, 2023. It is now read-only.

Cleaned-up log4j 1.2 that disables scary networking (base=1.2.17, fully binary compatible) #17

Closed
wants to merge 27 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
a5ffe95
[maven-scm] copy for tag v1_2_17
grobmeier May 4, 2012
e10785b
[maven-scm] copy for tag v1_2_17_rc3
grobmeier May 6, 2012
de9f0ea
vote passed
grobmeier May 26, 2012
0f5446b
chore: add .gitignore
lsimons Dec 19, 2021
ffda834
docs: update copyright year
lsimons Dec 19, 2021
de9db67
docs: add a readme
lsimons Dec 19, 2021
e474998
build: check in NTEventLogappender.dll from log4j 1.2.17 binary.
lsimons Dec 19, 2021
a540537
build: rewrite maven build for modern 2021 tools
lsimons Dec 19, 2021
d648d7d
ci: set up github actions
lsimons Dec 19, 2021
07aafec
test: delete several broken low-quality tests
lsimons Dec 19, 2021
12120ee
test: delete old scripts to run tests in favor of mvn test
lsimons Dec 19, 2021
bd88008
test: note why DRFATestCase is slow
lsimons Dec 19, 2021
8cf0234
test: do not run NTEventLogAppenderTest except on Windows
lsimons Dec 19, 2021
e966e75
test: do not run MDCTestCase reflection test on modern JDK
lsimons Dec 19, 2021
05b34e9
test: do not use same output files from many tests
lsimons Dec 19, 2021
cd146da
docs: add missing maven site template resources
lsimons Dec 19, 2021
200e23f
docs: fix download page for 1.2.17
lsimons Dec 19, 2021
45901b8
docs: fix some broken site content
lsimons Dec 19, 2021
4a80521
docs: attempt to update build instructions on website
lsimons Dec 19, 2021
7e81878
fix: pin chainsaw.Main serialVersionUID for japicmp compatibility
lsimons Dec 19, 2021
0e1fb96
fix: remove insecure code from log4j.net package
lsimons Dec 19, 2021
531e972
fix: remove insecure code from log4j.jmx package
lsimons Dec 19, 2021
291837c
fix: remove insecure code from jdbc package
lsimons Dec 19, 2021
02f7edd
fix: remove insecure code from varia package
lsimons Dec 19, 2021
82fb4f0
fix: allow MDC to work on Java >= 9
lsimons Dec 19, 2021
80c7f1f
test: disable a test that is flaky on many platforms
lsimons Dec 19, 2021
a7e7760
test: disable more tests for non-toolchain runs
lsimons Dec 19, 2021
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
Prev Previous commit
Next Next commit
test: do not run NTEventLogAppenderTest except on Windows
  • Loading branch information
lsimons committed Dec 19, 2021
commit 8cf02344ab93ecee8739075b7f8ebb82be21618b
Original file line number Diff line number Diff line change
@@ -42,6 +42,10 @@ public void tearDown() {
* Simple test of NTEventLogAppender.
*/
public void testSimple() {
if (!System.getProperty("os.name").startsWith("Windows")) {
return;
}

BasicConfigurator.configure(new NTEventLogAppender());
Logger logger = Logger.getLogger("org.apache.log4j.nt.NTEventLogAppenderTest");
int i = 0;