Note: This website is archived. For up-to-date information about D projects and development, please visit wiki.dlang.org.

Changeset 841

Show
Ignore:
Timestamp:
01/03/11 06:40:32 (14 years ago)
Author:
braddr
Message:

Enable hello-profile, now that it works.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/test/Makefile

    r838 r841  
    7979export ARGS=-inline -release -gc -O -unittest -fPIC 
    8080export DMD=../src/dmd 
    8181export EXE= 
    8282export OBJ=.o 
    8383export DSEP=/ 
    8484export SEP=/ 
    8585endif 
    8686 
    8787runnable_tests=$(wildcard runnable/*.d) $(wildcard runnable/*.html) $(wildcard runnable/*.sh) 
    8888runnable_test_results=$(addsuffix .out,$(addprefix $(RESULTS_DIR)/,$(runnable_tests))) 
    8989 
    9090compilable_tests=$(wildcard compilable/*.d) 
    9191compilable_test_results=$(addsuffix .out,$(addprefix $(RESULTS_DIR)/,$(compilable_tests))) 
    9292 
    9393fail_compilation_tests=$(wildcard fail_compilation/*.d) 
    9494fail_compilation_test_results=$(addsuffix .out,$(addprefix $(RESULTS_DIR)/,$(fail_compilation_tests))) 
    9595 
    9696all: run_tests 
    9797 
    9898ifeq ($(MODEL),64) 
    99 DISABLED_TESTS = hello-profile 
    100 # I don't know, yet, which module is at fault, but something between 
    101 # exit of main and rt.trace.~this is segv'ing 
    102  
    103 DISABLED_TESTS += arrayop 
     99DISABLED_TESTS = arrayop 
    104100# value isn't making it into the runtime library call for some reason 
    105101 
    106102DISABLED_TESTS += integrate 
    107103DISABLED_TESTS += testmath 
    108104# needs std.math 
    109105 
    110106DISABLED_TESTS += eh2 
    111107DISABLED_TESTS += test4 
    112108DISABLED_TESTS += test12 
    113109DISABLED_TESTS += test42 
    114110DISABLED_TESTS += testsignals 
    115111DISABLED_TESTS += xtest46 
    116112# hangs at exit, somewhere in atomic code? 
    117113 
    118114DISABLED_TESTS += hospital 
    119115# int vs long issues 
    120116 
    121117DISABLED_TESTS += interpret 
    122118# array literal with struct 
    123119