Skip to content
Snippets Groups Projects
Select Git revision
  • 9ea5b86a95b45986d93e62cfeef75ffd7042ed08
  • master default protected
  • 9.0
  • 8.0
  • nt-tools
  • 7.8
  • 7.6
  • 7.4
  • 7.2
  • 7.0
  • 0.6
  • rosuav/latex-markdown-renderer
  • rxnpatch/rxnpatch
  • marcus/gobject-introspection
  • rxnpatch/8.0
  • rosuav/pre-listening-ports
  • rosuav/async-annotations
  • rosuav/pgsql-ssl
  • rxnpatch/rxnpatch-broken/2023-10-06T094250
  • grubba/fdlib
  • grubba/wip/sakura/8.0
  • v8.0.2020
  • v8.0.2018
  • v8.0.2016
  • v8.0.2014
  • v8.0.2012
  • v8.0.2008
  • v8.0.2006
  • v8.0.2004
  • v8.0.2002
  • v8.0.2000
  • v8.0.1998
  • v8.0.1996
  • v8.0.1994
  • v8.0.1992
  • v8.0.1990
  • v8.0.1988
  • v8.0.1986
  • rxnpatch/clusters/8.0/2025-04-29T124414
  • rxnpatch/2025-04-29T124414
  • v8.0.1984
41 results

multiset.fig

Blame
  • testsuite.in 1.52 KiB
    START_MARKER
    dnl add_include_path
    dnl add_module_path
    dnl add_program_path
    
    test_eq(basename("/a/b"),"b")
    test_eq(basename("/a/"),"")
    test_eq(basename("/a"),"a")
    test_eq(basename("/"),"")
    test_eq(basename("a/b"),"b")
    test_eq(basename("a/"),"")
    test_eq(basename("a"),"a")
    test_eq(basename(""),"")
    
    test_eq(dirname("/a/b/"),"/a/b")
    test_eq(dirname("/a/b"),"/a")
    test_eq(dirname("/a/"),"/a")
    test_eq(dirname("/a"),"/")
    test_eq(dirname("/"),"/")
    test_eq(dirname(""),"")
    test_eq(dirname("a/b/"),"a/b")
    test_eq(dirname("a/b"),"a")
    test_eq(dirname("a/"),"a")
    test_eq(dirname("a"),"")
    
    test_eq( catch(error("x"))[0], "x" )
    test_eq( catch(error("X"))[1][0]->fun, master()->_main )
    test_eq( catch(error("%x", 10))[0], "a" )
    test_eval_error( error("%s", 0) )
    
    test_true( true )
    test_false( false )
    test_do( bool x=true; )
    test_do( bool x=false; )
    
    dnl is_absolute_path
    dnl normalize_path
    dnl putenv
    dnl remove_include_path
    dnl remove_module_path
    dnl remove_program_path
    
    dnl master()->set_inhibit_compile_errors
    test_any([[
      master()->set_inhibit_compile_errors(lambda(){});
      mixed res = catch{compile_string("dfasfqw123");};
      master()->set_inhibit_compile_errors(0);
      return arrayp(res)||objectp(res);
    ]], 1)
    
    // - pike -e
    test_false( Process.system(RUNPIKE + " -e \"return 0;\"") )
    test_true( Process.system(RUNPIKE + " -e \"return 1;\"") )
    test_true( Process.system(RUNPIKE + " -e \"return NOT(0);\"") )
    test_true( Process.system(RUNPIKE + " -e \"return CHAR(A)==65;\"") )
    test_eq( Process.popen(RUNPIKE + " -e \"return (string)7;\""), "7\n" )
    
    END_MARKER