|
| 1 | +<?xml version="1.0"?> |
| 2 | +<?xml-stylesheet type="text/xsl" href="configuration.xsl"?> |
| 3 | +<!-- |
| 4 | + ~ Licensed to the Apache Software Foundation (ASF) under one |
| 5 | + ~ or more contributor license agreements. See the NOTICE file |
| 6 | + ~ distributed with this work for additional information |
| 7 | + ~ regarding copyright ownership. The ASF licenses this file |
| 8 | + ~ to you under the Apache License, Version 2.0 (the |
| 9 | + ~ "License"); you may not use this file except in compliance |
| 10 | + ~ with the License. You may obtain a copy of the License at |
| 11 | + ~ |
| 12 | + ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | + ~ |
| 14 | + ~ Unless required by applicable law or agreed to in writing, software |
| 15 | + ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | + ~ See the License for the specific language governing permissions and |
| 18 | + ~ limitations under the License. |
| 19 | + --> |
| 20 | + |
| 21 | +<!-- Values used when running unit tests. Specify any values in here that |
| 22 | + should override the default values. --> |
| 23 | + |
| 24 | +<configuration> |
| 25 | + <property> |
| 26 | + <name>hadoop.tmp.dir</name> |
| 27 | + <value>target/build/test</value> |
| 28 | + <description>A base for other temporary directories.</description> |
| 29 | + <final>true</final> |
| 30 | + </property> |
| 31 | + <!-- Turn security off for tests by default --> |
| 32 | + <property> |
| 33 | + <name>hadoop.security.authentication</name> |
| 34 | + <value>simple</value> |
| 35 | + </property> |
| 36 | + <property> |
| 37 | + <name>fs.gs.impl</name> |
| 38 | + <value>org.apache.hadoop.fs.gs.GoogleHadoopFileSystem</value> |
| 39 | + </property> |
| 40 | + <property> |
| 41 | + <name>fs.AbstractFileSystem.gs.impl</name> |
| 42 | + <value>org.apache.hadoop.fs.gs.Gs</value> |
| 43 | + </property> |
| 44 | + |
| 45 | + <!-- |
| 46 | + To run these tests. |
| 47 | +
|
| 48 | + # Create a file auth-keys.xml - DO NOT ADD TO REVISION CONTROL |
| 49 | + # see testing.md for details on what to set. |
| 50 | + --> |
| 51 | + <include xmlns="http://www.w3.org/2001/XInclude" href="auth-keys.xml"> |
| 52 | + <fallback/> |
| 53 | + </include> |
| 54 | + |
| 55 | +</configuration> |
0 commit comments