search for: simpletest

Displaying 20 results from an estimated 42 matches for "simpletest".

2007 Nov 07
4
[noob] simpletest.rb, mongrel 1.1, ruby 1.8.4, mac os x 10.3.9 hangs
...Running examples/webrick_compare.rb works fine: % ruby examples/webrick_compare.rb [2007-11-07 20:27:34] INFO WEBrick 1.3.1 [2007-11-07 20:27:34] INFO ruby 1.8.4 (2005-12-24) [powerpc-darwin7.9.0] [2007-11-07 20:27:34] INFO WEBrick::HTTPServer#start: pid=919 port=4000 But running examples/simpletest.rb hangs: % ruby examples/simpletest.rb The application sit there, not going any further than the "require ''mongrel''" statement. Any thoughts one what I could be missing? Thanks in advance. Cheers, PA.
2015 Apr 09
2
[LLVMdev] code coverage instrumentation
...way and llcovprof-way (with and without optimization) is bloated 2x to 10x or in some cases 50x depending on the program. Here is output of size command for the variations on a simple test program that I wrote: text data bss dec hex filename 5625 700 1696 8021 1f55 simpletest.-O0-g.llcovprof. 12838 776 1808 15422 3c3e simpletest.-O0-g.llgcov. 1481 492 1616 3589 e05 simpletest.-O0.none 5337 700 1696 7733 1e35 simpletest.-O1-g.llcovprof. 12246 776 1792 14814 39de simpletest.-O1-g.llgcov. 1345 492 1616...
2006 Feb 20
8
Graceful stop in, timeouts out (for now)
Hey Luis, Just implemented the first cut at a graceful stop setup. It seems to mostly work except for a few hicups here and there which I''ll test out. I''ve tested this under OSX and will test on the other platforms soon. To use it take a look at the examples/simpletest.rb and see how I setup an "INT" handler to call HttpServer.stop. Hopefully this will help with your win32 service shutdown. The bad news is while doing this I found that Timeout doesn''t work so well on OSX. I''ve taken out the timeout functionality but left the option...
2006 Feb 14
6
Mongrel 0.3.3 -- Bug Fix
Hey Folks, This is a quick release that fixes a major bug. I forgot to require the timeout library properly in mongrel.rb so people using Mongrel outside of Rails would see pauses. 0.3.3 fixes this all up. The 0.3.3 release also has a small change to the examples/simpletest.rb file with some gzip response using Ruby''s zlib support. Curious what people think about this and whether it works for them. You can grab this release of Mongrel from: * http://mongrel.rubyforge.org/ * http://rubyforge.org/frs/?group_id=1306 Or just do gem install mongrel (or update...
2017 Aug 24
2
Building LLVM's fuzzers
..., getSectionEnd(Section)); SecEnd->setVisibility(GlobalValue::HiddenVisibility); + appendToUsed(M, {SecStart, SecEnd}); return std::make_pair(SecStart, SecEnd); } I'm trying it out now. Kostya Serebryany <kcc at google.com> writes: > With -Wl,-gc-sections I get this: > SimpleTest.cpp:(.text.sancov.module_ctor[sancov.module_ctor]+0x1b): > undefined reference to `__start___sancov_pcs' > SimpleTest.cpp:(.text.sancov.module_ctor[sancov.module_ctor]+0x20): > undefined reference to `__stop___sancov_pcs' > > > > On Thu, Aug 24, 2017 at 3:07 PM, George...
2013 Jan 29
3
[LLVMdev] Assertions in RuntimeDyldELF in ExecutionEngine/MCJIT tests
Hi! I'm trying to run LLVM test suite under AddressSanitizer and get test failures in: LLVM :: ExecutionEngine/MCJIT/simpletest-remote.ll LLVM :: ExecutionEngine/MCJIT/test-data-align-remote.ll LLVM :: ExecutionEngine/MCJIT/test-fp-no-external-funcs-remote.ll LLVM :: ExecutionEngine/MCJIT/test-global-init-nonzero-remote.ll All of them fail with assertion: lli: /usr/local/google/llvm/lib/ExecutionEngine/RuntimeD...
2017 Aug 24
3
Building LLVM's fuzzers
> On Aug 24, 2017, at 2:55 PM, Kostya Serebryany <kcc at google.com> wrote: > > Interesting. > This is a relatively new addition (fsanitize-coverage=pc-tables, which is now a part of -fsanitize=fuzzer). > The tests worked (did they? On Mac?) so I thought everything is ok. For tests we never compile the tested target with -O3 (and that wouldn’t be sufficient), and for
2005 Jul 01
1
drag problem
...but on subsequent drags the div''s initial coordinates are multiplied by two. I''ve tried to put in some debugging code just to output these locations but sever lack of sleep isn''t helping me thing straight here this is the html I''m using: <div id="simpleTest" class="imageLibraray"> test </div> <div id="shopping_cart_text1">out put text to go here </div> <script type="text/javascript" language="javascript"> // <![CDATA[ new Draggable(''simpleTest'...
2017 Aug 24
4
Building LLVM's fuzzers
...to work because for ELF targets llvm.used has no effect on the object file (only on the optimizer). Is there a simple way to reproduce the link failure? Peter > >> >> Kostya Serebryany <kcc at google.com> writes: >> > With -Wl,-gc-sections I get this: >> > SimpleTest.cpp:(.text.sancov.module_ctor[sancov.module_ctor]+0x1b): >> > undefined reference to `__start___sancov_pcs' >> > SimpleTest.cpp:(.text.sancov.module_ctor[sancov.module_ctor]+0x20): >> > undefined reference to `__stop___sancov_pcs' >> > >> > >&...
2006 May 30
1
Error in mongrel_rails script with Cygwin/Mongrel/Rails
...n setup), Gems (0.8.1 via ruby install.rb), Mongrel .3.12.4 (via gems), Rake 0.7.1(via gems, GemPlugin (via gems), Rails (via gems -include-dependencies which installed dependencies but failed to install rails itself ) then, Rails (via gems w/out dependencies clause)to get rails. Using mongrel via simpletest.rb works just fine but when I attempt to run mongrel_rails, I get the following error: $ mongrel_rails /usr/lib/ruby/gems/1.8/gems/gem_plugin-0.2.1/lib/gem_plugin.rb:109:in `load'': uninitialized constant Gem::SourceIndex (N ameError) from /usr/lib/ruby/gems/1.8/gems/mongrel-0.3.12.4/bin/m...
2017 Aug 24
3
Building LLVM's fuzzers
...GNU ld (GNU Binutils) 2.28.51.20170105". Peter > > > > > >> >> Peter >> >> >>> >>>> >>>> Kostya Serebryany <kcc at google.com> writes: >>>> > With -Wl,-gc-sections I get this: >>>> > SimpleTest.cpp:(.text.sancov.module_ctor[sancov.module_ctor]+0x1b): >>>> > undefined reference to `__start___sancov_pcs' >>>> > SimpleTest.cpp:(.text.sancov.module_ctor[sancov.module_ctor]+0x20): >>>> > undefined reference to `__stop___sancov_pcs' >>&...
2016 Dec 04
2
[Release-testers] 3.9.1-rc2 is ready for testing
...Clang Tools :: include-fixer/include_path.cpp Clang Tools :: include-fixer/merge.test LLVM :: ExecutionEngine/MCJIT/remote/cross-module-a.ll LLVM :: ExecutionEngine/MCJIT/remote/eh.ll LLVM :: ExecutionEngine/MCJIT/remote/multi-module-a.ll LLVM :: ExecutionEngine/MCJIT/remote/simpletest-remote.ll LLVM :: ExecutionEngine/MCJIT/remote/stubs-remote.ll LLVM :: ExecutionEngine/MCJIT/remote/test-common-symbols-remote.ll LLVM :: ExecutionEngine/MCJIT/remote/test-data-align-remote.ll LLVM :: ExecutionEngine/MCJIT/remote/test-fp-no-external-funcs-remote.ll LLVM :: Execu...
2011 Jul 29
2
[LLVMdev] sys::getHostTriple failed to recognize ARM correctly
...ript: line 2: 28401 Aborted '/nfs_home/chenwj/test/native-build/arm2/Debug+Asserts/bin/lli' '/nfs_home/chenwj/test/llvm/test/ExecutionEngine/hello.ll' > '/dev/null' -- ******************** Testing: 0 .. 10.. 20.. 30.. 40.. 50 FAIL: LLVM :: ExecutionEngine/simpletest.ll (3197 of 6030) ******************** TEST 'LLVM :: ExecutionEngine/simpletest.ll' FAILED ******************** Script: -- /nfs_home/chenwj/test/native-build/arm2/Debug+Asserts/bin/lli /nfs_home/chenwj/test/llvm/test/ExecutionEngine/simpletest.ll > /dev/null -- Exit Code: 134 Command Out...
2017 Aug 25
2
Building LLVM's fuzzers
...> >>> > >>> Peter > >>> > >>> > >>>> > >>>>> > >>>>> Kostya Serebryany <kcc at google.com> writes: > >>>>> > With -Wl,-gc-sections I get this: > >>>>> > SimpleTest.cpp:(.text.sancov.module_ctor[sancov.module_ > ctor]+0x1b): > >>>>> > undefined reference to `__start___sancov_pcs' > >>>>> > SimpleTest.cpp:(.text.sancov.module_ctor[sancov.module_ > ctor]+0x20): > >>>>> > undefined reference...
2013 Jan 30
2
[LLVMdev] Assertions in RuntimeDyldELF in ExecutionEngine/MCJIT tests
...Cc:* Kaylor, Andrew > *Subject:* Assertions in RuntimeDyldELF in ExecutionEngine/MCJIT tests**** > > ** ** > > Hi!**** > > ** ** > > I'm trying to run LLVM test suite under AddressSanitizer and get test > failures in:**** > > LLVM :: ExecutionEngine/MCJIT/simpletest-remote.ll**** > > LLVM :: ExecutionEngine/MCJIT/test-data-align-remote.ll**** > > LLVM :: ExecutionEngine/MCJIT/test-fp-no-external-funcs-remote.ll**** > > LLVM :: ExecutionEngine/MCJIT/test-global-init-nonzero-remote.ll**** > > ** ** > > All of them fail w...
2013 Jan 29
0
[LLVMdev] Assertions in RuntimeDyldELF in ExecutionEngine/MCJIT tests
...google.com] Sent: Tuesday, January 29, 2013 3:36 AM To: LLVM Developers Mailing List Cc: Kaylor, Andrew Subject: Assertions in RuntimeDyldELF in ExecutionEngine/MCJIT tests Hi! I'm trying to run LLVM test suite under AddressSanitizer and get test failures in: LLVM :: ExecutionEngine/MCJIT/simpletest-remote.ll LLVM :: ExecutionEngine/MCJIT/test-data-align-remote.ll LLVM :: ExecutionEngine/MCJIT/test-fp-no-external-funcs-remote.ll LLVM :: ExecutionEngine/MCJIT/test-global-init-nonzero-remote.ll All of them fail with assertion: lli: /usr/local/google/llvm/lib/ExecutionEngine/RuntimeD...
2012 Jun 19
2
[LLVMdev] mc jit
...PInt-OverAShr.ll LLVM :: ExecutionEngine/MCJIT/2010-01-15-UndefValue.ll LLVM :: ExecutionEngine/MCJIT/fpbitcast.ll LLVM :: ExecutionEngine/MCJIT/hello.ll LLVM :: ExecutionEngine/MCJIT/hello2.ll LLVM :: ExecutionEngine/MCJIT/simplesttest.ll LLVM :: ExecutionEngine/MCJIT/simpletest.ll LLVM :: ExecutionEngine/MCJIT/stubs.ll LLVM :: ExecutionEngine/MCJIT/test-arith.ll LLVM :: ExecutionEngine/MCJIT/test-branch.ll LLVM :: ExecutionEngine/MCJIT/test-call-no-external-funcs.ll LLVM :: ExecutionEngine/MCJIT/test-call.ll LLVM :: ExecutionEngine/MCJIT/test...
2007 Jun 13
1
seleniumrc_fu initial test issue
...** Execute selenium:test_with_server_started Loaded suite /users/lattam/src/bin/rake Running *firefox... Started Requesting --->/selenium-server/driver/?cmd=getNewBrowserSession&1= %2Afirefox&2=http%3A%2F%2Flocalhost%3A4000 RESULT: E Finished in 0.160018 seconds. 1) Error: test_home(SimpleTest): SeleniumCommandError: /Volumes/Data/Projects/esco/config/../vendor/plugins/seleniumrc_fu/ lib/selenium/version_0_8_1/selenium.rb:156:in `do_command'' /users/lattam/src/lib/ruby/1.8/timeout.rb:56:in `timeout'' /users/lattam/src/lib/ruby/1.8/timeout.rb:76:in `timeout'...
2017 Sep 11
2
Building LLVM's fuzzers
...gt;>> >>> >>> >>> >>>> >>> >>>>> >>> >>>>> Kostya Serebryany <kcc at google.com> writes: >>> >>>>> > With -Wl,-gc-sections I get this: >>> >>>>> > SimpleTest.cpp:(.text.sancov.module_ctor[sancov.module_ctor] >>> +0x1b): >>> >>>>> > undefined reference to `__start___sancov_pcs' >>> >>>>> > SimpleTest.cpp:(.text.sancov.module_ctor[sancov.module_ctor] >>> +0x20): >>> >&...
2013 Jan 31
2
[LLVMdev] Assertions in RuntimeDyldELF in ExecutionEngine/MCJIT tests
...Cc:* Kaylor, Andrew > *Subject:* Assertions in RuntimeDyldELF in ExecutionEngine/MCJIT tests**** > > **** > > Hi!**** > > **** > > I'm trying to run LLVM test suite under AddressSanitizer and get test > failures in:**** > > LLVM :: ExecutionEngine/MCJIT/simpletest-remote.ll**** > > LLVM :: ExecutionEngine/MCJIT/test-data-align-remote.ll**** > > LLVM :: ExecutionEngine/MCJIT/test-fp-no-external-funcs-remote.ll**** > > LLVM :: ExecutionEngine/MCJIT/test-global-init-nonzero-remote.ll**** > > **** > > All of them fail w...