Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
5a92c415
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
5a92c415
编写于
10月 24, 2020
作者:
S
Steven Li
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Enhanced crash_gen tool to run clusters, with a new README file
上级
f7a0b6b8
变更
5
展开全部
隐藏空白更改
内联
并排
Showing
5 changed file
with
420 addition
and
170 deletion
+420
-170
tests/pytest/crash_gen/README.md
tests/pytest/crash_gen/README.md
+130
-0
tests/pytest/crash_gen/crash_gen.py
tests/pytest/crash_gen/crash_gen.py
+36
-21
tests/pytest/crash_gen/db.py
tests/pytest/crash_gen/db.py
+17
-8
tests/pytest/crash_gen/misc.py
tests/pytest/crash_gen/misc.py
+44
-2
tests/pytest/crash_gen/service_manager.py
tests/pytest/crash_gen/service_manager.py
+193
-139
未找到文件。
tests/pytest/crash_gen/README.md
0 → 100644
浏览文件 @
5a92c415
<center><h1>
User's Guide to the Crash_Gen Tool
</h1></center>
# Introduction
To effectively test and debug our TDengine product, we have developed a simple tool to
exercise various functions of the system in a randomized fashion, hoping to expose
maximum number of problems, hopefully without a pre-determined scenario.
# Preparation
To run this tool, please ensure the followed preparation work is done first.
1.
Fetch a copy of the TDengine source code, and build it successfully in the
`build/`
directory
1.
Ensure that the system has Python3.8 or above properly installed. We use
Ubuntu 20.04LTS as our own development environment, and suggest you also use such
an environment if possible.
# Simple Execution
To run the tool with the simplest method, follow the steps below:
1.
Open a terminal window, start the
`taosd`
service in the
`build/`
directory
(or however you prefer to start the
`taosd`
service)
1.
Open another terminal window, go into the
`tests/pytest/`
directory, and
run
`./crash_gen.sh -p -t 3 -s 10`
(change the two parameters here as you wish)
1.
Watch the output to the end and see if you get a
`SUCCESS`
or
`FAILURE`
That's it!
# Running Clusters
This tool also makes it easy to test/verify the clustering capabilities of TDengine. You
can start a cluster quite easily with the following command:
```
$ cd tests/pytest/
$ ./crash_gen.sh -e -o 3
```
The
`-e`
option above tells the tool to start the service, and do not run any tests, while
the
`-o 3`
option tells the tool to start 3 DNodes and join them together in a cluster.
Obviously you can adjust the the number here.
## Behind the Scenes
When the tool runs a cluster, it users a number of directories, each holding the information
for a single DNode, see:
```
$ ls build/cluster*
build/cluster_dnode_0:
cfg data log
build/cluster_dnode_1:
cfg data log
build/cluster_dnode_2:
cfg data log
```
Therefore, when something goes wrong and you want to reset everything with the cluster, simple
erase all the files:
```
$ rm -rf build/cluster_dnode_*
```
## Addresses and Ports
The DNodes in the cluster all binds the the
`127.0.0.1`
IP address (for now anyway), and
uses port 6030 for the first DNode, and 6130 for the 2nd one, and so on.
## Testing Against a Cluster
In a separate terminal window, you can invoke the tool in client mode and test against
a cluster, such as:
```
$ ./crash_gen.sh -p -t 10 -s 100 -i 3
```
Here the
`-i`
option tells the tool to always create tables with 3 replicas, and run
all tests against such tables.
# Additional Features
The exhaustive features of the tool is available through the
`-h`
option:
```
$ ./crash_gen.sh -h
usage: crash_gen_bootstrap.py [-h] [-a] [-b MAX_DBS] [-c CONNECTOR_TYPE] [-d] [-e] [-g IGNORE_ERRORS] [-i MAX_REPLICAS] [-l] [-n] [-o NUM_DNODES] [-p] [-r]
[-s MAX_STEPS] [-t NUM_THREADS] [-v] [-x]
TDengine Auto Crash Generator (PLEASE NOTICE the Prerequisites Below)
---------------------------------------------------------------------
1. You build TDengine in the top level ./build directory, as described in offical docs
2. You run the server there before this script: ./build/bin/taosd -c test/cfg
optional arguments:
-h, --help show this help message and exit
-a, --auto-start-service
Automatically start/stop the TDengine service (default: false)
-b MAX_DBS, --max-dbs MAX_DBS
Maximum number of DBs to keep, set to disable dropping DB. (default: 0)
-c CONNECTOR_TYPE, --connector-type CONNECTOR_TYPE
Connector type to use: native, rest, or mixed (default: 10)
-d, --debug Turn on DEBUG mode for more logging (default: false)
-e, --run-tdengine Run TDengine service in foreground (default: false)
-g IGNORE_ERRORS, --ignore-errors IGNORE_ERRORS
Ignore error codes, comma separated, 0x supported (default: None)
-i MAX_REPLICAS, --max-replicas MAX_REPLICAS
Maximum number of replicas to use, when testing against clusters. (default: 1)
-l, --larger-data Write larger amount of data during write operations (default: false)
-n, --dynamic-db-table-names
Use non-fixed names for dbs/tables, useful for multi-instance executions (default: false)
-o NUM_DNODES, --num-dnodes NUM_DNODES
Number of Dnodes to initialize, used with -e option. (default: 1)
-p, --per-thread-db-connection
Use a single shared db connection (default: false)
-r, --record-ops Use a pair of always-fsynced fils to record operations performing + performed, for power-off tests (default: false)
-s MAX_STEPS, --max-steps MAX_STEPS
Maximum number of steps to run (default: 100)
-t NUM_THREADS, --num-threads NUM_THREADS
Number of threads to run (default: 10)
-v, --verify-data Verify data written in a number of places by reading back (default: false)
-x, --continue-on-exception
Continue execution after encountering unexpected/disallowed errors/exceptions (default: false)
```
tests/pytest/crash_gen/crash_gen.py
浏览文件 @
5a92c415
...
@@ -18,6 +18,7 @@ from __future__ import annotations
...
@@ -18,6 +18,7 @@ from __future__ import annotations
from
typing
import
Set
from
typing
import
Set
from
typing
import
Dict
from
typing
import
Dict
from
typing
import
List
from
typing
import
List
from
typing
import
Optional
# Type hinting, ref: https://stackoverflow.com/questions/19202633/python-3-type-hinting-for-none
import
textwrap
import
textwrap
import
time
import
time
...
@@ -62,9 +63,10 @@ gContainer: Container
...
@@ -62,9 +63,10 @@ gContainer: Container
class
WorkerThread
:
class
WorkerThread
:
def
__init__
(
self
,
pool
:
ThreadPool
,
tid
,
tc
:
ThreadCoordinator
,
def
__init__
(
self
,
pool
:
ThreadPool
,
tid
,
tc
:
ThreadCoordinator
):
# te: TaskExecutor,
"""
):
# note: main thread context!
Note: this runs in the main thread context
"""
# self._curStep = -1
# self._curStep = -1
self
.
_pool
=
pool
self
.
_pool
=
pool
self
.
_tid
=
tid
self
.
_tid
=
tid
...
@@ -1007,6 +1009,8 @@ class Database:
...
@@ -1007,6 +1009,8 @@ class Database:
possibly in a cluster environment.
possibly in a cluster environment.
For now we use it to manage state transitions in that database
For now we use it to manage state transitions in that database
TODO: consider moving, but keep in mind it contains "StateMachine"
'''
'''
_clsLock
=
threading
.
Lock
()
# class wide lock
_clsLock
=
threading
.
Lock
()
# class wide lock
_lastInt
=
101
# next one is initial integer
_lastInt
=
101
# next one is initial integer
...
@@ -1182,7 +1186,7 @@ class Task():
...
@@ -1182,7 +1186,7 @@ class Task():
def
__init__
(
self
,
execStats
:
ExecutionStats
,
db
:
Database
):
def
__init__
(
self
,
execStats
:
ExecutionStats
,
db
:
Database
):
self
.
_workerThread
=
None
self
.
_workerThread
=
None
self
.
_err
=
None
# type: Exception
self
.
_err
:
Optional
[
Exception
]
=
None
self
.
_aborted
=
False
self
.
_aborted
=
False
self
.
_curStep
=
None
self
.
_curStep
=
None
self
.
_numRows
=
None
# Number of rows affected
self
.
_numRows
=
None
# Number of rows affected
...
@@ -1318,10 +1322,11 @@ class Task():
...
@@ -1318,10 +1322,11 @@ class Task():
self
.
_aborted
=
True
self
.
_aborted
=
True
traceback
.
print_exc
()
traceback
.
print_exc
()
except
BaseException
:
# TODO: what is this again??!!
except
BaseException
:
# TODO: what is this again??!!
self
.
logDebug
(
raise
RuntimeError
(
"Punt"
)
"[=] Unexpected exception, SQL: {}"
.
format
(
# self.logDebug(
wt
.
getDbConn
().
getLastSql
()))
# "[=] Unexpected exception, SQL: {}".format(
raise
# wt.getDbConn().getLastSql()))
# raise
self
.
_execStats
.
endTaskType
(
self
.
__class__
.
__name__
,
self
.
isSuccess
())
self
.
_execStats
.
endTaskType
(
self
.
__class__
.
__name__
,
self
.
isSuccess
())
self
.
logDebug
(
"[X] task execution completed, {}, status: {}"
.
format
(
self
.
logDebug
(
"[X] task execution completed, {}, status: {}"
.
format
(
...
@@ -1498,7 +1503,8 @@ class TaskCreateDb(StateTransitionTask):
...
@@ -1498,7 +1503,8 @@ class TaskCreateDb(StateTransitionTask):
# was: self.execWtSql(wt, "create database db")
# was: self.execWtSql(wt, "create database db")
repStr
=
""
repStr
=
""
if
gConfig
.
max_replicas
!=
1
:
if
gConfig
.
max_replicas
!=
1
:
numReplica
=
Dice
.
throw
(
gConfig
.
max_replicas
)
+
1
# 1,2 ... N
# numReplica = Dice.throw(gConfig.max_replicas) + 1 # 1,2 ... N
numReplica
=
gConfig
.
max_replicas
# fixed, always
repStr
=
"replica {}"
.
format
(
numReplica
)
repStr
=
"replica {}"
.
format
(
numReplica
)
self
.
execWtSql
(
wt
,
"create database {} {}"
self
.
execWtSql
(
wt
,
"create database {} {}"
.
format
(
self
.
_db
.
getName
(),
repStr
)
)
.
format
(
self
.
_db
.
getName
(),
repStr
)
)
...
@@ -2050,7 +2056,7 @@ class ClientManager:
...
@@ -2050,7 +2056,7 @@ class ClientManager:
class
MainExec
:
class
MainExec
:
def
__init__
(
self
):
def
__init__
(
self
):
self
.
_clientMgr
=
None
self
.
_clientMgr
=
None
self
.
_svcMgr
=
None
self
.
_svcMgr
=
None
# type: ServiceManager
signal
.
signal
(
signal
.
SIGTERM
,
self
.
sigIntHandler
)
signal
.
signal
(
signal
.
SIGTERM
,
self
.
sigIntHandler
)
signal
.
signal
(
signal
.
SIGINT
,
self
.
sigIntHandler
)
signal
.
signal
(
signal
.
SIGINT
,
self
.
sigIntHandler
)
...
@@ -2063,17 +2069,16 @@ class MainExec:
...
@@ -2063,17 +2069,16 @@ class MainExec:
self
.
_svcMgr
.
sigUsrHandler
(
signalNumber
,
frame
)
self
.
_svcMgr
.
sigUsrHandler
(
signalNumber
,
frame
)
def
sigIntHandler
(
self
,
signalNumber
,
frame
):
def
sigIntHandler
(
self
,
signalNumber
,
frame
):
if
self
.
_svcMgr
:
if
self
.
_svcMgr
:
self
.
_svcMgr
.
sigIntHandler
(
signalNumber
,
frame
)
self
.
_svcMgr
.
sigIntHandler
(
signalNumber
,
frame
)
if
self
.
_clientMgr
:
if
self
.
_clientMgr
:
self
.
_clientMgr
.
sigIntHandler
(
signalNumber
,
frame
)
self
.
_clientMgr
.
sigIntHandler
(
signalNumber
,
frame
)
def
runClient
(
self
):
def
runClient
(
self
):
global
gSvcMgr
global
gSvcMgr
if
gConfig
.
auto_start_service
:
if
gConfig
.
auto_start_service
:
self
.
_svcMgr
=
ServiceManager
()
gSvcMgr
=
self
.
_svcMgr
=
ServiceManager
()
# hack alert
gSvcMgr
=
self
.
_svcMgr
# hack alert
gSvcMgr
.
startTaosService
()
# we start, don't run
self
.
_svcMgr
.
startTaosService
()
# we start, don't run
self
.
_clientMgr
=
ClientManager
()
self
.
_clientMgr
=
ClientManager
()
ret
=
None
ret
=
None
...
@@ -2086,12 +2091,10 @@ class MainExec:
...
@@ -2086,12 +2091,10 @@ class MainExec:
def
runService
(
self
):
def
runService
(
self
):
global
gSvcMgr
global
gSvcMgr
self
.
_svcMgr
=
ServiceManager
()
gSvcMgr
=
self
.
_svcMgr
=
ServiceManager
(
gConfig
.
num_dnodes
)
# save it in a global variable TODO: hack alert
gSvcMgr
=
self
.
_svcMgr
# save it in a global variable TODO: hack alert
self
.
_svcMgr
.
run
()
# run to some end state
gSvcMgr
.
run
()
# run to some end state
self
.
_svcMgr
=
None
gSvcMgr
=
self
.
_svcMgr
=
None
gSvcMgr
=
None
def
init
(
self
):
# TODO: refactor
def
init
(
self
):
# TODO: refactor
global
gContainer
global
gContainer
...
@@ -2165,6 +2168,13 @@ class MainExec:
...
@@ -2165,6 +2168,13 @@ class MainExec:
'--dynamic-db-table-names'
,
'--dynamic-db-table-names'
,
action
=
'store_true'
,
action
=
'store_true'
,
help
=
'Use non-fixed names for dbs/tables, useful for multi-instance executions (default: false)'
)
help
=
'Use non-fixed names for dbs/tables, useful for multi-instance executions (default: false)'
)
parser
.
add_argument
(
'-o'
,
'--num-dnodes'
,
action
=
'store'
,
default
=
1
,
type
=
int
,
help
=
'Number of Dnodes to initialize, used with -e option. (default: 1)'
)
parser
.
add_argument
(
parser
.
add_argument
(
'-p'
,
'-p'
,
'--per-thread-db-connection'
,
'--per-thread-db-connection'
,
...
@@ -2209,7 +2219,12 @@ class MainExec:
...
@@ -2209,7 +2219,12 @@ class MainExec:
def
run
(
self
):
def
run
(
self
):
if
gConfig
.
run_tdengine
:
# run server
if
gConfig
.
run_tdengine
:
# run server
self
.
runService
()
try
:
self
.
runService
()
return
0
# success
except
ConnectionError
as
err
:
Logging
.
error
(
"Failed to make DB connection, please check DB instance manually"
)
return
-
1
# failure
else
:
else
:
return
self
.
runClient
()
return
self
.
runClient
()
...
...
tests/pytest/crash_gen/db.py
浏览文件 @
5a92c415
...
@@ -12,7 +12,9 @@ from util.cases import *
...
@@ -12,7 +12,9 @@ from util.cases import *
from
util.dnodes
import
*
from
util.dnodes
import
*
from
util.log
import
*
from
util.log
import
*
from
.misc
import
Logging
,
CrashGenError
,
Helper
from
.misc
import
Logging
,
CrashGenError
,
Helper
,
Dice
import
os
import
datetime
# from .service_manager import TdeInstance
# from .service_manager import TdeInstance
class
DbConn
:
class
DbConn
:
...
@@ -44,6 +46,9 @@ class DbConn:
...
@@ -44,6 +46,9 @@ class DbConn:
self
.
_lastSql
=
None
self
.
_lastSql
=
None
self
.
_dbTarget
=
dbTarget
self
.
_dbTarget
=
dbTarget
def
__repr__
(
self
):
return
"[DbConn: type={}, target={}]"
.
format
(
self
.
_type
,
self
.
_dbTarget
)
def
getLastSql
(
self
):
def
getLastSql
(
self
):
return
self
.
_lastSql
return
self
.
_lastSql
...
@@ -54,7 +59,7 @@ class DbConn:
...
@@ -54,7 +59,7 @@ class DbConn:
# below implemented by child classes
# below implemented by child classes
self
.
openByType
()
self
.
openByType
()
Logging
.
debug
(
"[DB] data connection opened
, type = {}"
.
format
(
self
.
_type
))
Logging
.
debug
(
"[DB] data connection opened
: {}"
.
format
(
self
))
self
.
isOpen
=
True
self
.
isOpen
=
True
def
close
(
self
):
def
close
(
self
):
...
@@ -277,15 +282,18 @@ class DbTarget:
...
@@ -277,15 +282,18 @@ class DbTarget:
self
.
cfgPath
=
cfgPath
self
.
cfgPath
=
cfgPath
self
.
hostAddr
=
hostAddr
self
.
hostAddr
=
hostAddr
self
.
port
=
port
self
.
port
=
port
def
__repr__
(
self
):
def
__repr__
(
self
):
return
"[DbTarget: cfgPath={}, host={}:{}]"
.
format
(
return
"[DbTarget: cfgPath={}, host={}:{}]"
.
format
(
self
.
cfgPath
,
self
.
hostAddr
,
self
.
port
)
Helper
.
getFriendlyPath
(
self
.
cfgPath
),
self
.
hostAddr
,
self
.
port
)
def
getEp
(
self
):
return
"{}:{}"
.
format
(
self
.
hostAddr
,
self
.
port
)
class
DbConnNative
(
DbConn
):
class
DbConnNative
(
DbConn
):
# Class variables
# Class variables
_lock
=
threading
.
Lock
()
_lock
=
threading
.
Lock
()
_connInfoDisplayed
=
False
# _connInfoDisplayed = False # TODO: find another way to display this
totalConnections
=
0
# Not private
totalConnections
=
0
# Not private
def
__init__
(
self
,
dbTarget
):
def
__init__
(
self
,
dbTarget
):
...
@@ -304,9 +312,9 @@ class DbConnNative(DbConn):
...
@@ -304,9 +312,9 @@ class DbConnNative(DbConn):
cls
=
self
.
__class__
# Get the class, to access class variables
cls
=
self
.
__class__
# Get the class, to access class variables
with
cls
.
_lock
:
# force single threading for opening DB connections. # TODO: whaaat??!!!
with
cls
.
_lock
:
# force single threading for opening DB connections. # TODO: whaaat??!!!
dbTarget
=
self
.
_dbTarget
dbTarget
=
self
.
_dbTarget
if
not
cls
.
_connInfoDisplayed
:
#
if not cls._connInfoDisplayed:
cls
.
_connInfoDisplayed
=
True
# updating CLASS variable
#
cls._connInfoDisplayed = True # updating CLASS variable
Logging
.
info
(
"Initiating TAOS native connection to {}"
.
format
(
dbTarget
))
Logging
.
debug
(
"Initiating TAOS native connection to {}"
.
format
(
dbTarget
))
# Make the connection
# Make the connection
# self._conn = taos.connect(host=hostAddr, config=cfgPath) # TODO: make configurable
# self._conn = taos.connect(host=hostAddr, config=cfgPath) # TODO: make configurable
# self._cursor = self._conn.cursor()
# self._cursor = self._conn.cursor()
...
@@ -424,3 +432,4 @@ class DbManager():
...
@@ -424,3 +432,4 @@ class DbManager():
def
cleanUp
(
self
):
def
cleanUp
(
self
):
self
.
_dbConn
.
close
()
self
.
_dbConn
.
close
()
tests/pytest/crash_gen/misc.py
浏览文件 @
5a92c415
import
threading
import
threading
import
random
import
random
import
logging
import
logging
import
os
class
CrashGenError
(
Exception
):
class
CrashGenError
(
Exception
):
...
@@ -26,7 +27,7 @@ class LoggingFilter(logging.Filter):
...
@@ -26,7 +27,7 @@ class LoggingFilter(logging.Filter):
class
MyLoggingAdapter
(
logging
.
LoggerAdapter
):
class
MyLoggingAdapter
(
logging
.
LoggerAdapter
):
def
process
(
self
,
msg
,
kwargs
):
def
process
(
self
,
msg
,
kwargs
):
return
"[{}]{}"
.
format
(
threading
.
get_ident
()
%
10000
,
msg
),
kwargs
return
"[{}]
{}"
.
format
(
threading
.
get_ident
()
%
10000
,
msg
),
kwargs
# return '[%s] %s' % (self.extra['connid'], msg), kwargs
# return '[%s] %s' % (self.extra['connid'], msg), kwargs
...
@@ -71,12 +72,44 @@ class Logging:
...
@@ -71,12 +72,44 @@ class Logging:
def
warning
(
cls
,
msg
):
def
warning
(
cls
,
msg
):
cls
.
logger
.
warning
(
msg
)
cls
.
logger
.
warning
(
msg
)
@
classmethod
def
error
(
cls
,
msg
):
cls
.
logger
.
error
(
msg
)
class
Status
:
class
Status
:
STATUS_STARTING
=
1
STATUS_STARTING
=
1
STATUS_RUNNING
=
2
STATUS_RUNNING
=
2
STATUS_STOPPING
=
3
STATUS_STOPPING
=
3
STATUS_STOPPED
=
4
STATUS_STOPPED
=
4
def
__init__
(
self
,
status
):
self
.
set
(
status
)
def
__repr__
(
self
):
return
"[Status: v={}]"
.
format
(
self
.
_status
)
def
set
(
self
,
status
):
self
.
_status
=
status
def
get
(
self
):
return
self
.
_status
def
isStarting
(
self
):
return
self
.
_status
==
Status
.
STATUS_STARTING
def
isRunning
(
self
):
# return self._thread and self._thread.is_alive()
return
self
.
_status
==
Status
.
STATUS_RUNNING
def
isStopping
(
self
):
return
self
.
_status
==
Status
.
STATUS_STOPPING
def
isStopped
(
self
):
return
self
.
_status
==
Status
.
STATUS_STOPPED
def
isStable
(
self
):
return
self
.
isRunning
()
or
self
.
isStopped
()
# Deterministic random number generator
# Deterministic random number generator
class
Dice
():
class
Dice
():
seeded
=
False
# static, uninitialized
seeded
=
False
# static, uninitialized
...
@@ -118,14 +151,23 @@ class Helper:
...
@@ -118,14 +151,23 @@ class Helper:
def
convertErrno
(
cls
,
errno
):
def
convertErrno
(
cls
,
errno
):
return
errno
if
(
errno
>
0
)
else
0x80000000
+
errno
return
errno
if
(
errno
>
0
)
else
0x80000000
+
errno
@
classmethod
def
getFriendlyPath
(
cls
,
path
):
# returns .../xxx/yyy
ht1
=
os
.
path
.
split
(
path
)
ht2
=
os
.
path
.
split
(
ht1
[
0
])
return
".../"
+
ht2
[
1
]
+
'/'
+
ht1
[
1
]
class
Progress
:
class
Progress
:
STEP_BOUNDARY
=
0
STEP_BOUNDARY
=
0
BEGIN_THREAD_STEP
=
1
BEGIN_THREAD_STEP
=
1
END_THREAD_STEP
=
2
END_THREAD_STEP
=
2
SERVICE_HEART_BEAT
=
3
tokens
=
{
tokens
=
{
STEP_BOUNDARY
:
'.'
,
STEP_BOUNDARY
:
'.'
,
BEGIN_THREAD_STEP
:
'['
,
BEGIN_THREAD_STEP
:
'['
,
END_THREAD_STEP
:
'] '
END_THREAD_STEP
:
'] '
,
SERVICE_HEART_BEAT
:
'.Y.'
}
}
@
classmethod
@
classmethod
...
...
tests/pytest/crash_gen/service_manager.py
浏览文件 @
5a92c415
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录