search for: test_module

Displaying 14 results from an estimated 14 matches for "test_module".

2010 May 10
0
How RoR extract a http parameterfrom arequest?
This is request made from the client: new Ajax.Updater("sip_tab_content", "/rails/test_modules/show/"+$F"boardid"), {method :''get'', onFailure:displaySIPTabFailure, onComplete:displaySIPTabFailure }); This is controller from the ROR controller acting as server: class TestModu...
2007 Jan 30
1
Cannot preserve uids and gids with AIX 5.3 w/rsync 2.6.2
...--numeric-ids when running.... Here is my test config--- # Simple test config file log file = /tmp/rsync.log [test] use chroot = no path = /tmp/rsync_test/ read only = false hosts allow = test_box* Remember, have use chroot set to no and false If I just use a simple rsync test_file test_box::test_module no problems. Of course owner is nobody:nobody (Changing UID and GID param in rsyncd.conf does work) However, if I ever attempt to add a flag to preserve permissions, like: rsync -a test_file test_box::test_module these are the errors: CLIENT rsync: writefd_unbuffered failed to write 32768 bytes...
2005 Apr 11
2
[LLVMdev] JIT and array pointers
...============================================ unsigned int buff[4096]; int main (void) { buff[0] = 1; // compile and execute code that will change buff[0] to 2 Value *c0 = ConstantUInt::get (Type::UIntTy, 0); Value *c2 = ConstantUInt::get (Type::UIntTy, 2); Module *m = new Module ("test_module"); Function *f = m->getOrInsertFunction ("test_function", Type::VoidTy, 0); BasicBlock *b = new BasicBlock ("entry_block", f); // Here is the problem. // I need to get the buff pointer into variable, which I can // pass to GetElementPtrInst // Value *pbuff =...
2016 May 25
4
RFC: LNT/Test-suite support for custom metrics and test parameterization
...ood lit will run and collect all metrics, but there is no opportunity to make any settings for choosing what metrics I would like to collect. Test reports files allow to choose what report I would like. One time I can use one, second time I can use another. I can do this with cmake only by changing test_modules in file. So I can’t group some metrics and give them some name. Am I right? Thanks, Elena. From: Matthias Braun [mailto:matze at braunis.de] Sent: Friday, May 20, 2016 8:03 PM To: Elena Lepilkina <Elena.Lepilkina at synopsys.com> Cc: Daniel Dunbar <daniel at zuster.org>; llvm-dev &...
2001 Nov 23
1
Password-less daemon or rsh setup
...uiv or similar - any help on this would be greatly appreciated as it's definitely the preferred method. I've had some limited success with the daemon approach - but again I'm prompted for a password. Here's the command I'm trying to run: backup(nemxb01)$ rsync -nr production::test_module /export/home/nemxb01 If I supply nemxb01's password I get the correct results. FYI: nemxb01 doesn't exist on the production box. If someone could give me a step-by-step approach as to how to configure rlogin, and subsequently rsync to run through rsh I'd appreciate it. Thanks very m...
2016 May 25
0
RFC: LNT/Test-suite support for custom metrics and test parameterization
...ood lit will run and collect all metrics, but there is no opportunity to make any settings for choosing what metrics I would like to collect. Test reports files allow to choose what report I would like. One time I can use one, second time I can use another. I can do this with cmake only by changing test_modules in file. > So I can’t group some metrics and give them some name. The test_modules flag does indeed allow some customisation in what metrics are collected, my main usage for this has been do setup things to just collect codesize but not run the benchmark, a setup in which benchmarks are cross c...
2005 Apr 11
0
[LLVMdev] JIT and array pointers
...t; unsigned int buff[4096]; > > int main (void) > { > buff[0] = 1; > > // compile and execute code that will change buff[0] to 2 > Value *c0 = ConstantUInt::get (Type::UIntTy, 0); > Value *c2 = ConstantUInt::get (Type::UIntTy, 2); > > Module *m = new Module ("test_module"); Here, create an LLVM GlobalVariable 'BuffGV' of the appropriate type, and insert it into m: GlobalVariable *BuffGV = new GlobalVariable([4096 x uint], false, GlobalVariable::ExternalLinkage, 0, "Buff", m); > Function *f = m->getOrInsertFunction ("test_func...
2016 May 26
2
RFC: LNT/Test-suite support for custom metrics and test parameterization
...ood lit will run and collect all metrics, but there is no opportunity to make any settings for choosing what metrics I would like to collect. Test reports files allow to choose what report I would like. One time I can use one, second time I can use another. I can do this with cmake only by changing test_modules in file. So I can’t group some metrics and give them some name. The test_modules flag does indeed allow some customisation in what metrics are collected, my main usage for this has been do setup things to just collect codesize but not run the benchmark, a setup in which benchmarks are cross compil...
2016 May 26
0
RFC: LNT/Test-suite support for custom metrics and test parameterization
...the user has the testsuite in whatever configuration he wanted. I started a patch for this here: http://reviews.llvm.org/D19949 <http://reviews.llvm.org/D19949> but I need to find some time to rework it. If you run the test-suite manually: Just remove the "run" module in the config.test_modules list in the lit.site.cfg of your builddir. The benchmarks will no longer be executed but the codesize, hash and compiletime modules will still collect those metrics. We can add a cmake configuration parameter for this if this is a generally useful configuration. > 3. Before each group of...
2016 May 25
0
RFC: LNT/Test-suite support for custom metrics and test parameterization
...collect all metrics, but there is no > opportunity to make any settings for choosing what metrics I would like to > collect. Test reports files allow to choose what report I would like. One > time I can use one, second time I can use another. I can do this with cmake > only by changing test_modules in file. > > So I can’t group some metrics and give them some name. > > > > Am I right? > > > > Thanks, > > Elena. > > > > > > *From:* Matthias Braun [mailto:matze at braunis.de] > *Sent:* Friday, May 20, 2016 8:03 PM > *To:* Elena Lepilk...
2005 Apr 11
0
[LLVMdev] JIT and array pointers
On Mon, 11 Apr 2005, Paul wrote: > I'm trying to pass an array pointer to my run-time generated module, and > after a long time of searching for the answer, the only thing I got was > a headache. Basically I have a few arrays (few megabytes which will > sometimes be accessed as 8 / 16 / 32 / 64 bit binary / fp values), that > will be modified by both the generated module, and my
2005 Apr 10
2
[LLVMdev] JIT and array pointers
I'm trying to pass an array pointer to my run-time generated module, and after a long time of searching for the answer, the only thing I got was a headache. Basically I have a few arrays (few megabytes which will sometimes be accessed as 8 / 16 / 32 / 64 bit binary / fp values), that will be modified by both the generated module, and my main c program, so I would like to put those into global
2016 May 20
0
RFC: LNT/Test-suite support for custom metrics and test parameterization
> On May 12, 2016, at 11:21 PM, Elena Lepilkina via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > Hi all, > > As we understood great changes will be done in LNT, so we are waiting to new LNT version and stopped our work in LNT. > > One more question about using test-suite separately with cmake. Cmake can only build all tests and generate lit tests. After that we
2016 May 13
4
RFC: LNT/Test-suite support for custom metrics and test parameterization
Hi all, As we understood great changes will be done in LNT, so we are waiting to new LNT version and stopped our work in LNT. One more question about using test-suite separately with cmake. Cmake can only build all tests and generate lit tests. After that we can run LIT and get report which is not equal with report (simple) got with make. Cmake test-suite version has no features to run custom