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_2_1 :: src / java / org / apache / log4j / test /

fqcn

#!/bin/bash

# A regression test to check the caller localization in subclasses of Category

# Read the .functions file
. .functions

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

function testFQCN {
 layout=$1
 
 echo -n "FQCN test $TEST - "
 java org.apache.log4j.test.FQCNTest $OUTPUT

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



declare -i TEST

TEST=1
if [ $TEST -ge $start ]; then
  testFQCN 
fi
[See repo JSON]