source: proiecte/HadoopJUnit/hadoop-0.20.1/src/test/core-site.xml @ 141

Last change on this file since 141 was 120, checked in by (none), 14 years ago

Added the mail files for the Hadoop JUNit Project

  • Property svn:executable set to *
File size: 1.3 KB
Line 
1<?xml version="1.0"?>
2<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
3
4<!-- Values used when running unit tests.  This is mostly empty, to -->
5<!-- use of the default values, overriding the potentially -->
6<!-- user-editted core-site.xml in the conf/ directory.  -->
7
8<configuration>
9
10
11<property>
12  <name>hadoop.tmp.dir</name>
13  <value>build/test</value>
14  <description>A base for other temporary directories.</description>
15  <final>true</final>
16</property>
17
18<property>
19  <name>test.fs.s3.name</name>
20  <value>s3:///</value>
21  <description>The name of the s3 file system for testing.</description>
22</property>
23
24<property>
25  <name>fs.s3.block.size</name>
26  <value>128</value>
27  <description>Size of a block in bytes.</description>
28</property>
29
30<property>
31  <name>fs.ftp.user.localhost</name>
32  <value>user</value>
33  <description>The username for connecting to FTP server running on localhost.
34  This is required by FTPFileSystem</description>
35</property>
36
37<property>
38  <name>fs.ftp.password.localhost</name>
39  <value>password</value>
40  <description>The password for connecting to FTP server running on localhost.
41   This is required by FTPFileSystem</description>
42</property>
43
44<property>
45  <name>test.fs.s3n.name</name>
46  <value>s3n:///</value>
47  <description>The name of the s3n file system for testing.</description>
48</property>
49
50</configuration>
Note: See TracBrowser for help on using the repository browser.