貿易聯盟全域設定

Trade Federation (TF) 全域設定檔是 TF 初始化時載入一次的檔案。這個設定檔用於定義 TF 例項的環境。

載入全域設定檔

TF 全域設定檔是 XML 檔案,可透過設定本機環境變數 TF_GLOBAL_CONFIG 指定。如果未指定 TF_GLOBAL_CONFIG,TF 會嘗試在目前工作路徑中找出名為 tf_global_config.xml 的檔案。如果失敗,TF 會載入預設的 GlobalConfiguration 檔案。舉例來說,您可以透過下列指令,以自訂全域設定啟動 TF:

TF_GLOBAL_CONFIG=/path/to/my/custom/good_tf_global_conf.xml tradefed.sh

全域設定檔範例

<configuration description="Example Global Config">
  <device_manager class="com.android.tradefed.device.DeviceManager">
    <option name="max-null-devices" value="10" />
  </device_manager>
</configuration>

上例會將「null-device」預留位置數量設為 10,而非 DeviceManager 中定義的預設值。