search for: testconfigur

Displaying 4 results from an estimated 4 matches for "testconfigur".

Did you mean: testconfig
2009 Oct 13
7
Unicorn Nginx Issue
I''ve setup nginx with this server { listen 80; server_name unicorn.local; location / { proxy_pass http://unicorn; } } upstream unicorn { server unix:/Users/mattmongeau/projects/test/unicorn/tmp/sockets/unicorn.sock; } When I run unicorn_rails -c config/unicorn.rb -E development I can access the application just fine on unicorn.local When I run unicorn_rails -c
2019 Dec 11
4
modification on lnt to recognize new architecture
...merge with lnt (https://github.com/llvm/llvm-lnt)? I checked lists.llvm.org mailing lists, but it is not clear to me. Thanks in advance. ----------- diff --git a/lnt/tests/nt.py b/lnt/tests/nt.py index 4ce6647..ce37687 100644 --- a/lnt/tests/nt.py +++ b/lnt/tests/nt.py @@ -420,6 +420,8 @@ class TestConfiguration(object): llvm_arch = 'Sparc' elif arch in ('mips', 'mipsel', 'mips64', 'mips64el'): llvm_arch = 'Mips' + elif arch in ('ve'): + llvm_arch = 'VE' if...
2005 Dec 19
2
Network Loading of freeBSD
I have spent a couple of days and quite some time during the nights googling and experimenting in pursuing subject objective and I feel like failing, if I cannot get competent help: My objective: boot a FreeBSD-package over the network by Systems lacking HW-Support for PXE My Testconfiguration: Server IBM-PC300 Client Siemes Fujitsu ErgoPro with freeBSD6.0 installed Network card in client intel82558, which I believe to be sufficiently equal with 82559er (hence covered by eepro100) when producing the boot-floppy Status achieved: # Bootfloppy on ErgoPro boots Etherboot # Et...
2013 Sep 20
3
[PATCH] preload_app can take an optional block for warmup
...if preload_app.respond_to?(:call) + preload_app[app] + end end end diff --git a/test/unit/test_configurator.rb b/test/unit/test_configurator.rb index 1298f0e..8a1a68e 100644 --- a/test/unit/test_configurator.rb +++ b/test/unit/test_configurator.rb @@ -172,4 +172,12 @@ class TestConfigurator < Test::Unit::TestCase end end + def test_preload_app + test_struct = TestStruct.new + [ true, false, proc { |a| }, Proc.new { |a| }, lambda { |a| } ].each do |my_proc| + Unicorn::Configurator.new(:preload_app => my_proc).commit!(test_struct) + assert_equal my_p...