mirror of
https://github.com/golang/go
synced 2024-11-22 01:54:42 -07:00
move austin/eval and austin/ogle to exp/eval and exp/ogle
R=r OCL=35736 CL=35746
This commit is contained in:
parent
218a412e73
commit
2b7fde3406
@ -4,7 +4,7 @@
|
||||
|
||||
include $(GOROOT)/src/Make.$(GOARCH)
|
||||
|
||||
TARG=eval
|
||||
TARG=exp/eval
|
||||
GOFILES=\
|
||||
abort.go\
|
||||
bridge.go\
|
@ -2,6 +2,9 @@
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// This package is the beginning of an interpreter for Go.
|
||||
// It can run simple Go programs but does not implement
|
||||
// interface values or packages.
|
||||
package eval
|
||||
|
||||
import (
|
@ -4,7 +4,7 @@
|
||||
|
||||
include $(GOROOT)/src/Make.$(GOARCH)
|
||||
|
||||
TARG=ogle
|
||||
TARG=exp/ogle
|
||||
GOFILES=\
|
||||
abort.go\
|
||||
arch.go\
|
@ -2,13 +2,14 @@
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// Ogle is the beginning of a debugger for Go.
|
||||
package ogle
|
||||
|
||||
import (
|
||||
"bufio";
|
||||
"debug/elf";
|
||||
"debug/proc";
|
||||
"eval";
|
||||
"exp/eval";
|
||||
"fmt";
|
||||
"go/scanner";
|
||||
"go/token";
|
@ -6,7 +6,7 @@ package ogle
|
||||
|
||||
import (
|
||||
"debug/proc";
|
||||
"eval";
|
||||
"exp/eval";
|
||||
"fmt";
|
||||
"os";
|
||||
)
|
@ -4,7 +4,7 @@
|
||||
|
||||
package main
|
||||
|
||||
import "ogle"
|
||||
import "exp/ogle"
|
||||
|
||||
func main() {
|
||||
ogle.Main();
|
@ -8,7 +8,7 @@ import (
|
||||
"debug/elf";
|
||||
"debug/gosym";
|
||||
"debug/proc";
|
||||
"eval";
|
||||
"exp/eval";
|
||||
"fmt";
|
||||
"log";
|
||||
"os";
|
@ -6,7 +6,7 @@ package ogle
|
||||
|
||||
import (
|
||||
"debug/proc";
|
||||
"eval";
|
||||
"exp/eval";
|
||||
"reflect";
|
||||
)
|
||||
|
@ -6,7 +6,7 @@ package ogle
|
||||
|
||||
import (
|
||||
"debug/proc";
|
||||
"eval";
|
||||
"exp/eval";
|
||||
"fmt";
|
||||
"log";
|
||||
)
|
@ -6,7 +6,7 @@ package ogle
|
||||
|
||||
import (
|
||||
"debug/proc";
|
||||
"eval";
|
||||
"exp/eval";
|
||||
"fmt";
|
||||
)
|
||||
|
@ -7,7 +7,7 @@ package ogle
|
||||
import (
|
||||
"debug/gosym";
|
||||
"debug/proc";
|
||||
"eval";
|
||||
"exp/eval";
|
||||
"log";
|
||||
"os";
|
||||
)
|
15
src/run.bash
15
src/run.bash
@ -26,12 +26,10 @@ maketest() {
|
||||
|
||||
maketest \
|
||||
pkg \
|
||||
../usr/austin/eval \
|
||||
|
||||
# all of these are subtly different
|
||||
# from what maketest does.
|
||||
|
||||
|
||||
(xcd pkg/sync;
|
||||
make clean;
|
||||
time make
|
||||
@ -55,7 +53,18 @@ make clean
|
||||
./test.bash
|
||||
) || exit $?
|
||||
|
||||
(xcd ../usr/austin/ogle
|
||||
(xcd ../usr/r/rpc
|
||||
make clean
|
||||
time make
|
||||
./chanrun
|
||||
) || exit $?
|
||||
|
||||
(xcd ../usr/dsymonds/iterable
|
||||
make clean
|
||||
time make test
|
||||
) || exit $?
|
||||
|
||||
(xcd pkg/exp/ogle
|
||||
make clean
|
||||
time make ogle
|
||||
) || exit $?
|
||||
|
Loading…
Reference in New Issue
Block a user