VirtualBox

source: kBuild/trunk/src/kmk/tests/scripts/functions/shell@ 1839

Last change on this file since 1839 was 969, checked in by bird, 18 years ago

Fixing some svn props.

  • Property svn:eol-style set to LF
File size: 511 bytes
Line 
1# -*-perl-*-
2
3$description = 'Test the $(shell ...) function.';
4
5$details = '';
6
7
8# Test shells inside rules.
9run_make_test('.PHONY: all
10all: ; @echo $(shell echo hi)
11','','hi');
12
13
14# Test shells inside exported environment variables.
15# This is the test that fails if we try to put make exported variables into
16# the environment for a $(shell ...) call.
17run_make_test('
18export HI = $(shell echo hi)
19.PHONY: all
20all: ; @echo $$HI
21','','hi');
22
231;
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette