forked from electric-cloud/EC-WebLogic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
29 lines (22 loc) · 749 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#
# Makefile responsible for building the EC-WebLogic plugin
#
# Copyright (c) 2005-2012 Electric Cloud, Inc.
# All rights reserved
SRCTOP=..
include $(SRCTOP)/build/vars.mak
build: buildJavaPlugin
unittest:
systemtest: systemtest-setup mysystemtest-run
systemtest-setup:
$(EC_PERL) systemtest/setup.pl $(TEST_SERVER) $(PLUGINS_ARTIFACTS)
mysystemtest-run: NTESTFILES ?= systemtest
mysystemtest-run:
@-mkdir -p "$(OUTDIR)/$(ARCH)"
COMMANDER_PLUGIN_PERL="../../../staging/agent/perl" \
COMMANDER_JOBSTEPID="" \
COMMANDER_DEBUG=1 \
COMMANDER_DEBUGFILE="$(OUTDIR)/$(ARCH)/systemtest.log" \
$(EC_PERL) $(NTEST) --testout $(OUTDIR)/$(ARCH)/systemtest \
--target $(TEST_SERVER) $(NTESTARGS) $(NTESTFILES)
include $(SRCTOP)/build/rules.mak