]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/rm-lld.git/blobdiff - test/rm_test.cfg
RM LLD 2.0.0.x initial release for KeyStone-II
[keystone-rtos/rm-lld.git] / test / rm_test.cfg
diff --git a/test/rm_test.cfg b/test/rm_test.cfg
deleted file mode 100644 (file)
index c038c8b..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- *  Copyright 2012 by Texas Instruments Incorporated.
- *
- *  All rights reserved. Property of Texas Instruments Incorporated.
- *  Restricted rights to use, duplicate or disclose this code are
- *  granted through contract.
- *
- */
-
-var Memory = xdc.useModule('xdc.runtime.Memory');
-var BIOS = xdc.useModule('ti.sysbios.BIOS');
-var HeapMem = xdc.useModule('ti.sysbios.heaps.HeapMem');
-var HeapBuf = xdc.useModule('ti.sysbios.heaps.HeapBuf');
-var Task = xdc.useModule('ti.sysbios.knl.Task');
-var Idle = xdc.useModule('ti.sysbios.knl.Idle');
-var Log = xdc.useModule('xdc.runtime.Log');
-var Diags = xdc.useModule('xdc.runtime.Diags'); 
-
-/* Load and use the CSL package */
-var Csl = xdc.loadPackage('ti.csl');
-var Cppi = xdc.loadPackage('ti.drv.cppi'); 
-var Qmss = xdc.loadPackage('ti.drv.qmss'); 
-var Pa;
-try {
-    Pa = xdc.loadPackage('ti.drv.pa');
-}
-catch(e) {
-    /* Nothing to be done.  PA may not be present for some devices */
-}
-
-var Rm = xdc.loadPackage('ti.drv.rm'); 
-
-var System = xdc.useModule('xdc.runtime.System');
-var SysStd  = xdc.useModule('xdc.runtime.SysStd');
-System.SupportProxy = SysStd;
-
-/* Create a default system heap using ti.bios.HeapMem. */
-var heapMemParams1         = new HeapMem.Params;
-heapMemParams1.size        = 12288;
-heapMemParams1.sectionName = "systemHeap";
-Program.global.heap0       = HeapMem.create(heapMemParams1);
-
-/* This is the default memory heap. */
-Memory.defaultHeapInstance = Program.global.heap0;
-
-Program.sectMap["systemHeap"] = Program.platform.stackMemory;
-
-