The version of Apache log4j used by SoundHelix.

[[ 🗃 ^aEp6o apache-log4j ]] :: [📥 Inbox] [📤 Outbox] [🐤 Followers] [🤝 Collaborators] [🛠 Commits]

Clone

HTTPS: git clone https://vervis.peers.community/repos/aEp6o

SSH: git clone USERNAME@vervis.peers.community:aEp6o

Branches

Tags

v1_2final :: src / java / org / apache / log4j / test /

extSupport

#!/bin/bash

# A regression test to check extension support in DOMConfigurator and elsewhere

# Read the .functions file
. .functions

# If set, allows to skip tests 
declare -i start=$1
echo "start=$start TEMP=$TEMP OUTPUT=$OUTPUT"

function testExtSupport {
 configFile=$1
 
 echo -n "Extension support test $TEST - "
 java org.apache.log4j.xml.test.XTest $configFile

 check witness/ext.$TEST $OUTPUT; echo "OK."
}


echo "-- $OUTPUT"

declare -i TEST

TEST=1
if [ $TEST -ge $start ]; then
  testExtSupport xml/ext$TEST.xml
fi
[See repo JSON]