Skip to content

Instantly share code, notes, and snippets.

View piscisaureus's full-sized avatar
🦕

Bert Belder piscisaureus

🦕
View GitHub Profile
#0 0x00007fff84d1ed0c in kevent ()
#1 0x00007fff8dbb9bb5 in _dispatch_update_kq ()
#2 0x00007fff8dbba9a2 in _dispatch_port_set_init ()
#3 0x00007fff8dbb80fa in _dispatch_client_callout ()
#4 0x00007fff8dbb8085 in dispatch_once_f ()
#5 0x00007fff8dbbaa50 in _dispatch_mach_notify_source_init ()
#6 0x00007fff8dbb80fa in _dispatch_client_callout ()
#7 0x00007fff8dbb8085 in dispatch_once_f ()
#8 0x00007fff8dbba9d4 in dispatch_source_type_mach_send_init ()
#9 0x00007fff8dbb9936 in dispatch_source_create ()
#!/bin/sh
# Clear out the asm directory
rm -rf asm
#
# Unix x86 GAS
#
mkdir -p asm/x86-unix-gas
* windows: make active and closing handle state independent (Bert Belder)
* windows: signal handling support with uv_signal_t (Bert Belder)
* build: handle bad gcc -dumpversion output (Ben Noordhuis)
* linux: improve /proc/cpuinfo parser (Ben Noordhuis)
* windows: report spawn errors to the exit callback (Bert Belder)
* unix: work around darwin bug, don't poll() on pipe (Fedor Indutny)
* darwin: emulate fdatasync() with fcntl(F_FULLFSYNC) (Fedor Indutny)
* unix: remove dependency on ev_child (Ben Noordhuis)
* unix: preliminary signal handler support (Ben Noordhuis)
* Rip out c-ares (Bert Belder)
Berts-MacBook-Pro-2:libuv piscisaureus$ gdb --args test/run-tests fs_event_watch_dir fs_event_watch_dir
GNU gdb 6.3.50-20050815 (Apple version gdb-1820) (Sat Jun 16 02:40:11 UTC 2012)
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB. Type "show warranty" for details.
This GDB was configured as "x86_64-apple-darwin"...Reading symbols for shared libraries .... done
(gdb) run
Berts-MacBook-Pro-2:libuv piscisaureus$ make test
cc -Iinclude -Iinclude/uv-private -Isrc -Isrc/unix/ev -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_DARWIN_USE_64_BIT_INODE=1 -g -D_GNU_SOURCE -o test/run-tests test/run-tests.c \
test/runner.c test/runner-unix.c test/blackhole-server.c test/echo-server.c test/test-*.c uv.a -lm -framework CoreServices -pthread
test/run-tests
[% 0|+ 0|- 0]: platform_output
Output from process `platform_output`:
uv_get_process_title: test/run-tests
uv_resident_set_memory: 1482752
uv_uptime: 370.000000
uv_cpu_info:
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Users\Bert Belder>node -v
v0.8.7
C:\Users\Bert Belder>npm -v
1.1.49
C:\Users\Bert Belder>npm install -g gista
#include <pthread.h>
#include <signal.h>
#include <unistd.h>
#include <stdio.h>
#include <assert.h>
#include <mach/mach_init.h>
#include <mach/task.h>
#include <mach/thread_act.h>
D:\node4>node test\simple\test-path
assert.js:102
throw new assert.AssertionError({
^
AssertionError:
path.join("//foo/","bar")
expect="\\\\foo\\bar\\"
actual="\\foo\\bar"
path.join("//foo","/bar")
D:\v8>build\debug\d8 --nobreak-on-abort --enable-slow-asserts --debug-code --verify-heap --allow-natives-syntax test/mjsunit/mjsunit.js test/mjsunit/div-mod.js
--test
(function(left) { return left / 0; })
(function(left) { return left / 1; })
(function(left) { return left / 2; })
(function(left) { return left / 3; })
(function(left) { return left / 4; })
(function(left) { return left / 5; })
(function(left) { return left / 6; })
(function(left) { return left / 7; })